├── .gitignore ├── .gitreview └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled source # 2 | ################### 3 | *.com 4 | *.class 5 | *.dll 6 | *.exe 7 | *.o 8 | *.so 9 | *.pyc 10 | build/ 11 | dist/ 12 | doc/build/ 13 | 14 | # Packages # 15 | ############ 16 | # it's better to unpack these files and commit the raw source 17 | # git has its own built in compression methods 18 | *.7z 19 | *.dmg 20 | *.gz 21 | *.iso 22 | *.jar 23 | *.rar 24 | *.tar 25 | *.zip 26 | 27 | # Logs and databases # 28 | ###################### 29 | *.log 30 | *.sql 31 | *.sqlite 32 | logs/* 33 | 34 | # OS generated files # 35 | ###################### 36 | .DS_Store 37 | .DS_Store? 38 | ._* 39 | .Spotlight-V100 40 | .Trashes 41 | .idea 42 | .tox 43 | *.sublime* 44 | *.egg-info 45 | Icon? 46 | ehthumbs.db 47 | Thumbs.db 48 | .eggs 49 | 50 | # User driven backup files # 51 | ############################ 52 | *.bak 53 | *.swp 54 | 55 | # Generated by pbr while building docs 56 | ###################################### 57 | AUTHORS 58 | ChangeLog 59 | 60 | # Files created by releasenotes build 61 | releasenotes/build 62 | 63 | # Test temp files 64 | tests/plugins 65 | tests/playbooks 66 | tests/test.retry 67 | 68 | # Vagrant artifacts 69 | .vagrant 70 | 71 | # Auto-generated documentation 72 | doc/source/auto_* 73 | doc/source/rhel7 74 | -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- 1 | [gerrit] 2 | host=review.opendev.org 3 | port=29418 4 | project=openstack/openstack-ansible-security.git 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 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 | This project has been replaced by 9 | [ansible-hardening](https://docs.openstack.org/ansible-hardening/latest/). 10 | 11 | For any further questions, please email 12 | openstack-dev@lists.openstack.org or join #openstack-ansible on 13 | Freenode. 14 | --------------------------------------------------------------------------------