34 lines
466 B
Plaintext
34 lines
466 B
Plaintext
|
# .gitignore
|
||
|
|
||
|
# Hidden Vagrant-directory
|
||
|
.vagrant
|
||
|
|
||
|
# Python development
|
||
|
.ropeproject
|
||
|
|
||
|
# Backup files (e.g. Vim, Gedit, etc.)
|
||
|
*~
|
||
|
|
||
|
# Compiled Python
|
||
|
*.pyc
|
||
|
|
||
|
# BATS installation
|
||
|
test/bats/
|
||
|
|
||
|
# Vagrant base boxes (you never know when someone puts one in the repository)
|
||
|
*.box
|
||
|
|
||
|
# Directories containing roles imported from Ansible Galaxy
|
||
|
# (user.role notation)
|
||
|
ansible/roles/*.*
|
||
|
|
||
|
# Ansible Retry-files
|
||
|
*.retry
|
||
|
|
||
|
# Ansible fact cache
|
||
|
.ansible_cache/
|
||
|
|
||
|
*.log
|
||
|
|
||
|
# MacOS
|
||
|
.DS_store
|