chef-ruby-lvm-attrib 0.3.14 → 0.3.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 77c8453dc251253e39cedaa5bb692f8378a1f40d853bf173a69d94177f85f43b
4
- data.tar.gz: ba9ab50839d34ff304ea47778b67c7811027b1d9e2813d0ad3e5d59a4e9bbb97
3
+ metadata.gz: 9f3df9d0bc32da1540b1d5c3b8e3a097dd7c22ed7d929ef060a98eb63d42cdcc
4
+ data.tar.gz: 6111d22fcfd00e012241f3f08091bcbd3abbf87ec0feff57f03468d6c8709413
5
5
  SHA512:
6
- metadata.gz: 0e4af4866f610785e33c3fe6c294474608fd1ff200f6b2040eb8ce872e0543f1604fd6e952042e4bc8d30864ee68948fe9448fa7f8ae7196488086542197546b
7
- data.tar.gz: cb7c5cccd8011d1bd5524fa1a53fff468de544856d40c6851637b8c94569e7c394b458a645c9480a84f7d80093910e07b57fddce4a23f05721710024742d4a23
6
+ metadata.gz: 15a3636b44c2e76484903c90b069b50cf5a9a89546b532e37d2dd058cdcc80477b652f5f7163c90b4396ccf57f893071bcf1fd763cdc3453ee0bd0244d8c7070
7
+ data.tar.gz: a74c3c3deee9212f2fd1d191168f094f4b3c6b908ae65a73d2372eb4758da1d10261b1e9d08fc7163c0242e468a49b7156f8aa2461a71d821cbe260137d73cb8
data/.editorconfig ADDED
@@ -0,0 +1,19 @@
1
+ # https://EditorConfig.org
2
+
3
+ # top-most EditorConfig file
4
+ root=true
5
+
6
+ # Unix-style newlines with a newline ending every file
7
+ [*]
8
+ end_of_line = lf
9
+ insert_final_newline = true
10
+
11
+ # 2 space indentation
12
+ indent_style = space
13
+ indent_size = 2
14
+
15
+ # Avoid issues parsing cookbook files later
16
+ charset = utf-8
17
+
18
+ # Avoid cookstyle warnings
19
+ trim_trailing_whitespace = true
data/.envrc ADDED
@@ -0,0 +1 @@
1
+ use chefworkstation
data/.gitattributes ADDED
@@ -0,0 +1 @@
1
+ * text=auto eol=lf
data/.gitignore CHANGED
@@ -1,9 +1,49 @@
1
- *.sw?
1
+ *.rbc
2
+ .config
3
+ InstalledFiles
4
+ pkg
5
+ test/tmp
6
+ test/version_tmp
7
+ tmp
8
+ _Store
9
+ *~
10
+ *#
11
+ .#*
12
+ \#*#
13
+ *.un~
14
+ *.tmp
15
+ *.bk
16
+ *.bkup
17
+
18
+ # editor files
19
+ .idea
20
+ .*.sw[a-z]
21
+
22
+ # ruby/bundler/rspec files
23
+ .ruby-version
24
+ .ruby-gemset
25
+ .rvmrc
2
26
  Gemfile.lock
3
- pkg/
4
- tmp/
5
- coverage/
6
- .DS_Store
7
27
  .bundle
8
- *~
9
- vendor
28
+ *.gem
29
+ coverage
30
+ spec/reports
31
+
32
+ # YARD / rdoc artifacts
33
+ .yardoc
34
+ _yardoc
35
+ doc/
36
+ rdoc
37
+
38
+ # chef infra stuff
39
+ Berksfile.lock
40
+ .kitchen
41
+ kitchen.local.yml
42
+ vendor/
43
+ .coverage/
44
+ .zero-knife.rb
45
+ Policyfile.lock.json
46
+
47
+ # vagrant stuff
48
+ .vagrant/
49
+ .vagrant.d/
data/.overcommit.yml ADDED
@@ -0,0 +1,24 @@
1
+ ---
2
+ PreCommit:
3
+ TrailingWhitespace:
4
+ enabled: true
5
+ YamlLint:
6
+ enabled: true
7
+ required_executable: "yamllint"
8
+ ChefSpec:
9
+ enabled: true
10
+ required_executable: "chef"
11
+ command: ["chef", "exec", "rspec"]
12
+ Cookstyle:
13
+ enabled: true
14
+ required_executable: "cookstyle"
15
+ command: ["cookstyle"]
16
+ MarkdownLint:
17
+ enabled: false
18
+ required_executable: "npx"
19
+ command: ["npx", "markdownlint-cli2", "'**/*.md'"]
20
+ include: ["**/*.md"]
21
+
22
+ CommitMsg:
23
+ HardTabs:
24
+ enabled: true
data/.yamllint ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ extends: default
3
+ rules:
4
+ line-length:
5
+ max: 256
6
+ level: warning
7
+ document-start: disable
8
+ braces:
9
+ forbid: false
10
+ min-spaces-inside: 0
11
+ max-spaces-inside: 1
12
+ min-spaces-inside-empty: -1
13
+ max-spaces-inside-empty: -1
14
+ comments:
15
+ min-spaces-from-content: 1
data/CODE_OF_CONDUCT.md CHANGED
@@ -1 +1,3 @@
1
- Please refer to the Chef Community Code of Conduct at <https://www.chef.io/code-of-conduct/>
1
+ # Community Guidelines
2
+
3
+ This project follows the Chef Community Guidelines <https://docs.chef.io/community_guidelines.html>
data/CONTRIBUTING.md CHANGED
@@ -1 +1,4 @@
1
- Please refer to <https://github.com/chef/chef/blob/master/CONTRIBUTING.md>
1
+ # Contributing
2
+
3
+ Please refer to
4
+ [https://github.com/chef-cookbooks/community_cookbook_documentation/blob/master/CONTRIBUTING.MD](https://github.com/chef-cookbooks/community_cookbook_documentation/blob/master/CONTRIBUTING.MD)
data/TESTING.md ADDED
@@ -0,0 +1,3 @@
1
+ # Testing
2
+
3
+ Please refer to [the community cookbook documentation on testing](https://github.com/chef-cookbooks/community_cookbook_documentation/blob/master/TESTING.MD).
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.14
1
+ 0.3.15
data/chefignore ADDED
@@ -0,0 +1,115 @@
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
+ .envrc
13
+
14
+ # EDITORS #
15
+ ###########
16
+ .#*
17
+ .project
18
+ .settings
19
+ *_flymake
20
+ *_flymake.*
21
+ *.bak
22
+ *.sw[a-z]
23
+ *.tmproj
24
+ *~
25
+ \#*
26
+ REVISION
27
+ TAGS*
28
+ tmtags
29
+ .vscode
30
+ .editorconfig
31
+
32
+ ## COMPILED ##
33
+ ##############
34
+ *.class
35
+ *.com
36
+ *.dll
37
+ *.exe
38
+ *.o
39
+ *.pyc
40
+ *.so
41
+ */rdoc/
42
+ a.out
43
+ mkmf.log
44
+
45
+ # Testing #
46
+ ###########
47
+ .circleci/*
48
+ .codeclimate.yml
49
+ .delivery/*
50
+ .foodcritic
51
+ .kitchen*
52
+ .mdlrc
53
+ .overcommit.yml
54
+ .rspec
55
+ .rubocop.yml
56
+ .travis.yml
57
+ .watchr
58
+ .yamllint
59
+ azure-pipelines.yml
60
+ Dangerfile
61
+ examples/*
62
+ features/*
63
+ Guardfile
64
+ kitchen*.yml
65
+ mlc_config.json
66
+ Procfile
67
+ Rakefile
68
+ spec/*
69
+ test/*
70
+
71
+ # SCM #
72
+ #######
73
+ .git
74
+ .gitattributes
75
+ .gitconfig
76
+ .github/*
77
+ .gitignore
78
+ .gitkeep
79
+ .gitmodules
80
+ .svn
81
+ */.bzr/*
82
+ */.git
83
+ */.hg/*
84
+ */.svn/*
85
+
86
+ # Berkshelf #
87
+ #############
88
+ Berksfile
89
+ Berksfile.lock
90
+ cookbooks/*
91
+ tmp
92
+
93
+ # Bundler #
94
+ ###########
95
+ vendor/*
96
+ Gemfile
97
+ Gemfile.lock
98
+
99
+ # Policyfile #
100
+ ##############
101
+ Policyfile.rb
102
+ Policyfile.lock.json
103
+
104
+ # Documentation #
105
+ #############
106
+ CODE_OF_CONDUCT*
107
+ CONTRIBUTING*
108
+ documentation/*
109
+ TESTING*
110
+ UPGRADING*
111
+
112
+ # Vagrant #
113
+ ###########
114
+ .vagrant
115
+ Vagrantfile
@@ -0,0 +1,113 @@
1
+ driver:
2
+ name: dokken
3
+ privileged: true
4
+ chef_version: <%= ENV['CHEF_VERSION'] || 'current' %>
5
+
6
+ transport: { name: dokken }
7
+ provisioner: { name: dokken }
8
+
9
+ platforms:
10
+ - name: almalinux-8
11
+ driver:
12
+ image: dokken/almalinux-8
13
+ pid_one_command: /usr/lib/systemd/systemd
14
+
15
+ - name: almalinux-9
16
+ driver:
17
+ image: dokken/almalinux-9
18
+ pid_one_command: /usr/lib/systemd/systemd
19
+
20
+ - name: amazonlinux-2023
21
+ driver:
22
+ image: dokken/amazonlinux-2023
23
+ pid_one_command: /usr/lib/systemd/systemd
24
+
25
+ - name: centos-7
26
+ driver:
27
+ image: dokken/centos-7
28
+ pid_one_command: /usr/lib/systemd/systemd
29
+
30
+ - name: centos-stream-8
31
+ driver:
32
+ image: dokken/centos-stream-8
33
+ pid_one_command: /usr/lib/systemd/systemd
34
+
35
+ - name: centos-stream-9
36
+ driver:
37
+ image: dokken/centos-stream-9
38
+ pid_one_command: /usr/lib/systemd/systemd
39
+
40
+ - name: debian-9
41
+ driver:
42
+ image: dokken/debian-9
43
+ pid_one_command: /bin/systemd
44
+
45
+ - name: debian-10
46
+ driver:
47
+ image: dokken/debian-10
48
+ pid_one_command: /bin/systemd
49
+
50
+ - name: debian-11
51
+ driver:
52
+ image: dokken/debian-11
53
+ pid_one_command: /bin/systemd
54
+
55
+ - name: debian-12
56
+ driver:
57
+ image: dokken/debian-12
58
+ pid_one_command: /bin/systemd
59
+
60
+ - name: fedora-latest
61
+ driver:
62
+ image: dokken/fedora-latest
63
+ pid_one_command: /usr/lib/systemd/systemd
64
+
65
+ - name: opensuse-leap-15
66
+ driver:
67
+ image: dokken/opensuse-leap-15
68
+ pid_one_command: /usr/lib/systemd/systemd
69
+
70
+ - name: oraclelinux-7
71
+ driver:
72
+ image: dokken/oraclelinux-7
73
+ pid_one_command: /usr/lib/systemd/systemd
74
+
75
+ - name: oraclelinux-8
76
+ driver:
77
+ image: dokken/oraclelinux-8
78
+ pid_one_command: /usr/lib/systemd/systemd
79
+
80
+ - name: oraclelinux-9
81
+ driver:
82
+ image: dokken/oraclelinux-9
83
+ pid_one_command: /usr/lib/systemd/systemd
84
+
85
+ - name: rockylinux-8
86
+ driver:
87
+ image: dokken/rockylinux-8
88
+ pid_one_command: /usr/lib/systemd/systemd
89
+
90
+ - name: rockylinux-9
91
+ driver:
92
+ image: dokken/rockylinux-9
93
+ pid_one_command: /usr/lib/systemd/systemd
94
+
95
+ - name: ubuntu-18.04
96
+ driver:
97
+ image: dokken/ubuntu-18.04
98
+ pid_one_command: /bin/systemd
99
+
100
+ - name: ubuntu-20.04
101
+ driver:
102
+ image: dokken/ubuntu-20.04
103
+ pid_one_command: /bin/systemd
104
+
105
+ - name: ubuntu-22.04
106
+ driver:
107
+ image: dokken/ubuntu-22.04
108
+ pid_one_command: /bin/systemd
109
+
110
+ - name: ubuntu-23.04
111
+ driver:
112
+ image: dokken/ubuntu-23.04
113
+ pid_one_command: /bin/systemd
data/kitchen.exec.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ driver: { name: exec }
3
+ transport: { name: exec }
4
+
5
+ platforms:
6
+ - name: macos-latest
7
+ - name: windows-latest
@@ -0,0 +1,38 @@
1
+ ---
2
+ provisioner:
3
+ name: chef_infra
4
+ product_name: chef
5
+ product_version: <%= ENV['CHEF_VERSION'] || 'latest' %>
6
+ channel: stable
7
+ install_strategy: once
8
+ chef_license: accept
9
+ enforce_idempotency: <%= ENV['ENFORCE_IDEMPOTENCY'] || true %>
10
+ multiple_converge: <%= ENV['MULTIPLE_CONVERGE'] || 2 %>
11
+ deprecations_as_errors: true
12
+ log_level: <%= ENV['CHEF_LOG_LEVEL'] || 'auto' %>
13
+
14
+ verifier:
15
+ name: inspec
16
+
17
+ platforms:
18
+ - name: almalinux-8
19
+ - name: almalinux-9
20
+ - name: amazonlinux-2023
21
+ - name: centos-7
22
+ - name: centos-stream-8
23
+ - name: centos-stream-9
24
+ - name: debian-9
25
+ - name: debian-10
26
+ - name: debian-11
27
+ - name: debian-12
28
+ - name: fedora-latest
29
+ - name: opensuse-leap-15
30
+ - name: oraclelinux-7
31
+ - name: oraclelinux-8
32
+ - name: oraclelinux-9
33
+ - name: rockylinux-8
34
+ - name: rockylinux-9
35
+ - name: ubuntu-18.04
36
+ - name: ubuntu-20.04
37
+ - name: ubuntu-22.04
38
+ - name: ubuntu-23.04