├── .gitignore └── README.rst /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | 3 | # C extensions 4 | *.so 5 | 6 | # Packages 7 | *.egg 8 | *.egg-info 9 | AUTHORS 10 | ChangeLog 11 | dist 12 | build 13 | eggs 14 | parts 15 | bin 16 | var 17 | sdist 18 | develop-eggs 19 | .installed.cfg 20 | lib 21 | lib64 22 | 23 | # Installer logs 24 | pip-log.txt 25 | 26 | # Unit test / coverage reports 27 | .coverage 28 | .testrepository 29 | .tox 30 | cover 31 | nosetests.xml 32 | solum.sqlite 33 | 34 | # functional tests 35 | functionaltests/tempest.log 36 | 37 | # Files created by releasenotes build 38 | releasenotes/build 39 | 40 | # Translations 41 | *.mo 42 | 43 | # Mr Developer 44 | .mr.developer.cfg 45 | .project 46 | .pydevproject 47 | 48 | # Eclipse 49 | .settings 50 | 51 | #swap file 52 | *.swp 53 | *.swo 54 | 55 | #IntelJ Idea 56 | .idea/ 57 | 58 | #Autogenerated sample config file 59 | etc/solum/solum.conf.sample 60 | 61 | #Autogenerated policy config file 62 | etc/solum/solum.policy.yaml.sample 63 | 64 | #User Config file for Solum 65 | etc/solum/solum.conf 66 | 67 | !/.stestr.conf 68 | .stestr/ 69 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | This project is no longer maintained. 2 | 3 | The contents of this repository are still available in the Git 4 | source code management system. To see the contents of this 5 | repository before it reached its end of life, please check out the 6 | previous commit with "git checkout HEAD^1". 7 | 8 | For any further questions, please email 9 | openstack-discuss@lists.openstack.org or join #openstack-dev on 10 | OFTC. 11 | --------------------------------------------------------------------------------