File tree Expand file tree Collapse file tree 2 files changed +113
-3
lines changed
Expand file tree Collapse file tree 2 files changed +113
-3
lines changed Original file line number Diff line number Diff line change 1+ # Put files/directories that should be ignored in this file when uploading
2+ # to a Chef Infra Server or Supermarket.
3+ # Lines that start with '# ' are comments.
4+
5+ # OS generated files #
6+ ######################
7+ .DS_Store
8+ ehthumbs.db
9+ Icon?
10+ nohup.out
11+ Thumbs.db
12+
13+ # SASS #
14+ ########
15+ .sass-cache
16+
17+ # EDITORS #
18+ ###########
19+ .#*
20+ .project
21+ .settings
22+ *_flymake
23+ *_flymake.*
24+ *.bak
25+ *.sw[a-z]
26+ *.tmproj
27+ *~
28+ \#*
29+ mkmf.log
30+ REVISION
31+ TAGS*
32+ tmtags
33+
34+ ## COMPILED ##
35+ ##############
36+ *.class
37+ *.com
38+ *.dll
39+ *.exe
40+ *.o
41+ *.pyc
42+ *.so
43+ */rdoc/
44+ a.out
45+
46+ # Testing #
47+ ###########
48+ .circleci/*
49+ .codeclimate.yml
50+ .foodcritic
51+ .kitchen*
52+ .rspec
53+ .rubocop.yml
54+ .travis.yml
55+ .watchr
56+ azure-pipelines.yml
57+ examples/*
58+ features/*
59+ Guardfile
60+ kitchen.yml*
61+ Procfile
62+ Rakefile
63+ spec/*
64+ spec/*
65+ spec/fixtures/*
66+ test/*
67+
68+ # SCM #
69+ #######
70+ .git
71+ .gitattributes
72+ .gitconfig
73+ .github/*
74+ .gitignore
75+ .gitmodules
76+ .svn
77+ */.bzr/*
78+ */.git
79+ */.hg/*
80+ */.svn/*
81+
82+ # Berkshelf #
83+ #############
84+ Berksfile
85+ Berksfile.lock
86+ cookbooks/*
87+ tmp
88+
89+ # Bundler #
90+ ###########
91+ vendor/*
92+ Gemfile
93+ Gemfile.lock
94+
95+ # Policyfile #
96+ ##############
97+ Policyfile.rb
98+ Policyfile.lock.json
99+
100+ # Cookbooks #
101+ #############
102+ CHANGELOG*
103+ CONTRIBUTING*
104+ TESTING*
105+ CODE_OF_CONDUCT*
106+
107+ # Vagrant #
108+ ###########
109+ .vagrant
110+ Vagrantfile
Original file line number Diff line number Diff line change 2121
2222# Supported OS
2323supports 'amazon'
24- supports 'centos' , '>= 6'
25- supports 'debian' , '>= 9'
24+ supports 'centos' , '>= 6.0 '
25+ supports 'debian' , '>= 9.0 '
2626supports 'opensuse'
2727supports 'redhat'
2828supports 'suse'
2929supports 'ubuntu' , '>= 16.04'
30- supports 'windows' , '>= 2012'
30+ supports 'windows' , '>= 2012.0 '
You can’t perform that action at this time.
0 commit comments