chef-ruby-lvm-attrib 0.3.14 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.editorconfig +19 -0
- data/.envrc +1 -0
- data/.gitattributes +1 -0
- data/.github/workflows/ci.yml +3 -3
- data/.github/workflows/publish.yaml +32 -0
- data/.gitignore +47 -7
- data/.overcommit.yml +24 -0
- data/.release-please-manifest.json +3 -0
- data/.yamllint +15 -0
- data/CHANGELOG.md +16 -1
- data/CODE_OF_CONDUCT.md +3 -1
- data/CONTRIBUTING.md +4 -1
- data/TESTING.md +3 -0
- data/chefignore +115 -0
- data/kitchen.dokken.yml +113 -0
- data/kitchen.exec.yml +7 -0
- data/kitchen.global.yml +38 -0
- data/lib/lvm/attributes/2.03.22(2)/lvs.yaml +384 -0
- data/lib/lvm/attributes/2.03.22(2)/lvsseg.yaml +214 -0
- data/lib/lvm/attributes/2.03.22(2)/pvs.yaml +121 -0
- data/lib/lvm/attributes/2.03.22(2)/pvsseg.yaml +16 -0
- data/lib/lvm/attributes/2.03.22(2)/vgs.yaml +144 -0
- data/lib/lvm/attributes/2.03.24(2)/lvs.yaml +384 -0
- data/lib/lvm/attributes/2.03.24(2)/lvsseg.yaml +214 -0
- data/lib/lvm/attributes/2.03.24(2)/pvs.yaml +121 -0
- data/lib/lvm/attributes/2.03.24(2)/pvsseg.yaml +16 -0
- data/lib/lvm/attributes/2.03.24(2)/vgs.yaml +144 -0
- data/lib/lvm/attributes.rb +2 -0
- data/lib/lvm/version.rb +1 -1
- data/release-please-config.json +11 -0
- data/renovate.json +14 -2
- metadata +25 -3
- data/VERSION +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54589a1c7a98cdbad5a478aa9f2d722da56f7d0ace04b9a91579e3bf92965329
|
4
|
+
data.tar.gz: 02b88d4f159bd6105fd4c0c292bb48b5c9f60b0428cb6f1245f2f483a4b60404
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e80731e0b0b70039745c80cdd2d451472630e65a88a36ea54396cd574b41b3caeeea212844c6555d6cb0189fce5cdddd3d26c68bb9062c05f5066f2e4ac84022
|
7
|
+
data.tar.gz: '09600d4f2ff098cbd0de80d1205a6f71d37823113a82b57542e7e28329fa01774f79863105552e49b30bf31f6cf79f98495a6ca24543bb292e079f192b7fbb2b'
|
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/.github/workflows/ci.yml
CHANGED
@@ -14,8 +14,8 @@ jobs:
|
|
14
14
|
runs-on: ubuntu-latest
|
15
15
|
strategy:
|
16
16
|
matrix:
|
17
|
-
ruby: ['3.
|
18
|
-
name: Chefstyle on Ruby
|
17
|
+
ruby: ['3.3']
|
18
|
+
name: Chefstyle on Ruby
|
19
19
|
steps:
|
20
20
|
- uses: actions/checkout@v4
|
21
21
|
- uses: ruby/setup-ruby@v1
|
@@ -31,7 +31,7 @@ jobs:
|
|
31
31
|
needs: chefstyle
|
32
32
|
strategy:
|
33
33
|
matrix:
|
34
|
-
ruby: ['
|
34
|
+
ruby: ['3.1', '3.2', '3.3']
|
35
35
|
steps:
|
36
36
|
- uses: actions/checkout@v4
|
37
37
|
- uses: ruby/setup-ruby@v1
|
@@ -0,0 +1,32 @@
|
|
1
|
+
---
|
2
|
+
name: release-please
|
3
|
+
|
4
|
+
"on":
|
5
|
+
push:
|
6
|
+
branches: [main]
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
release-please:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- uses: googleapis/release-please-action@v4
|
13
|
+
id: release
|
14
|
+
with:
|
15
|
+
token: ${{ secrets.PORTER_GITHUB_TOKEN }}
|
16
|
+
|
17
|
+
- name: Checkout
|
18
|
+
uses: actions/checkout@v4
|
19
|
+
if: ${{ steps.release.outputs.release_created }}
|
20
|
+
|
21
|
+
- name: Build and publish to GitHub Package
|
22
|
+
uses: actionshub/publish-gem-to-github@main
|
23
|
+
if: ${{ steps.release.outputs.release_created }}
|
24
|
+
with:
|
25
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
26
|
+
owner: ${{ secrets.OWNER }}
|
27
|
+
|
28
|
+
- name: Build and publish to RubyGems
|
29
|
+
uses: actionshub/publish-gem-to-rubygems@main
|
30
|
+
if: ${{ steps.release.outputs.release_created }}
|
31
|
+
with:
|
32
|
+
token: ${{ secrets.RUBYGEMS_API_KEY }}
|
data/.gitignore
CHANGED
@@ -1,9 +1,49 @@
|
|
1
|
-
*.
|
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
|
-
|
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/CHANGELOG.md
CHANGED
@@ -1,4 +1,19 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [0.4.0](https://github.com/sous-chefs/chef-ruby-lvm-attrib/compare/v0.3.15...v0.4.0) (2024-06-28)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* Remove changelog ([#64](https://github.com/sous-chefs/chef-ruby-lvm-attrib/issues/64)) ([f00dc03](https://github.com/sous-chefs/chef-ruby-lvm-attrib/commit/f00dc03a46e79767204db8ba68585e0cf7c32970))
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* Fix release-config ([#66](https://github.com/sous-chefs/chef-ruby-lvm-attrib/issues/66)) ([53c59f1](https://github.com/sous-chefs/chef-ruby-lvm-attrib/commit/53c59f1180d03c74dd5513e2f3a6704597d9581c))
|
14
|
+
* More ([#68](https://github.com/sous-chefs/chef-ruby-lvm-attrib/issues/68)) ([3c82993](https://github.com/sous-chefs/chef-ruby-lvm-attrib/commit/3c829930cdf73900a6b13eb77a452a0a4cee1d26))
|
15
|
+
* release please ([#75](https://github.com/sous-chefs/chef-ruby-lvm-attrib/issues/75)) ([ca89fcc](https://github.com/sous-chefs/chef-ruby-lvm-attrib/commit/ca89fcc4fce8ab8cab00e65b852597b2f51c3aa4))
|
16
|
+
* release-please-config ([#69](https://github.com/sous-chefs/chef-ruby-lvm-attrib/issues/69)) ([e6ea516](https://github.com/sous-chefs/chef-ruby-lvm-attrib/commit/e6ea516797839857aeea1e77186ce27b21b02dd5))
|
2
17
|
|
3
18
|
## [v0.3.13](https://github.com/sous-chefs/chef-ruby-lvm-attrib/tree/v0.3.13) (2023-07-25)
|
4
19
|
|
data/CODE_OF_CONDUCT.md
CHANGED
data/CONTRIBUTING.md
CHANGED
@@ -1 +1,4 @@
|
|
1
|
-
|
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
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
|
data/kitchen.dokken.yml
ADDED
@@ -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
data/kitchen.global.yml
ADDED
@@ -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
|