diff --git a/.gitignore b/.gitignore index 9325160..5421f90 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,71 @@ -*.swp +# Compiled source # +################### +*.com +*.class +*.dll +*.exe +*.o +*.so *.pyc +build/ +dist/ +doc/build/ +# Packages # +############ +# it's better to unpack these files and commit the raw source +# git has its own built in compression methods +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip + +# Logs and databases # +###################### +*.log +*.sql +*.sqlite +logs/* + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +.idea +.tox +*.sublime* +*.egg-info +Icon? +ehthumbs.db +Thumbs.db +.eggs + +# User driven backup files # +############################ +*.bak +*.swp + +# Generated by pbr while building docs +###################################### +AUTHORS +ChangeLog + +# Files created by releasenotes build +releasenotes/build + +# Test temp files +tests/common +tests/*.retry + +# Vagrant artifacts +.vagrant + +# Git clones +openstack-ansible-ops diff --git a/Vagrantfile b/Vagrantfile index 46436cf..7d8c27a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -36,6 +36,10 @@ Vagrant.configure(2) do |config| leap422.vm.box = "opensuse/openSUSE-42.2-x86_64" end + config.vm.define "opensuse423" do |leap423| + leap423.vm.box = "opensuse/openSUSE-42.3-x86_64" + end + config.vm.define "centos7" do |centos7| centos7.vm.box = "centos/7" end