From 8c8afa11f15b2e46a6568e838c18e1b38dfb0b5a Mon Sep 17 00:00:00 2001 From: Patrick Schaumburg Date: Thu, 7 May 2020 15:15:16 +0200 Subject: [PATCH] add missing chefignore and fix version constraints for chef supermarket (#9) --- chefignore | 110 ++++++++++++++++++++++++++++++++++++++++++++++++++++ metadata.rb | 6 +-- 2 files changed, 113 insertions(+), 3 deletions(-) create mode 100644 chefignore diff --git a/chefignore b/chefignore new file mode 100644 index 0000000..5039e1c --- /dev/null +++ b/chefignore @@ -0,0 +1,110 @@ +# Put files/directories that should be ignored in this file when uploading +# to a Chef Infra Server or Supermarket. +# Lines that start with '# ' are comments. + +# OS generated files # +###################### +.DS_Store +ehthumbs.db +Icon? +nohup.out +Thumbs.db + +# SASS # +######## +.sass-cache + +# EDITORS # +########### +.#* +.project +.settings +*_flymake +*_flymake.* +*.bak +*.sw[a-z] +*.tmproj +*~ +\#* +mkmf.log +REVISION +TAGS* +tmtags + +## COMPILED ## +############## +*.class +*.com +*.dll +*.exe +*.o +*.pyc +*.so +*/rdoc/ +a.out + +# Testing # +########### +.circleci/* +.codeclimate.yml +.foodcritic +.kitchen* +.rspec +.rubocop.yml +.travis.yml +.watchr +azure-pipelines.yml +examples/* +features/* +Guardfile +kitchen.yml* +Procfile +Rakefile +spec/* +spec/* +spec/fixtures/* +test/* + +# SCM # +####### +.git +.gitattributes +.gitconfig +.github/* +.gitignore +.gitmodules +.svn +*/.bzr/* +*/.git +*/.hg/* +*/.svn/* + +# Berkshelf # +############# +Berksfile +Berksfile.lock +cookbooks/* +tmp + +# Bundler # +########### +vendor/* +Gemfile +Gemfile.lock + +# Policyfile # +############## +Policyfile.rb +Policyfile.lock.json + +# Cookbooks # +############# +CHANGELOG* +CONTRIBUTING* +TESTING* +CODE_OF_CONDUCT* + +# Vagrant # +########### +.vagrant +Vagrantfile diff --git a/metadata.rb b/metadata.rb index 041a958..709611a 100644 --- a/metadata.rb +++ b/metadata.rb @@ -21,10 +21,10 @@ # Supported OS supports 'amazon' -supports 'centos', '>= 6' -supports 'debian', '>= 9' +supports 'centos', '>= 6.0' +supports 'debian', '>= 9.0' supports 'opensuse' supports 'redhat' supports 'suse' supports 'ubuntu', '>= 16.04' -supports 'windows', '>= 2012' +supports 'windows', '>= 2012.0'