Skip to content

Commit d1c4836

Browse files
authored
Recreate module using latest pdk (#74)
Something is hosed up with my pdk files causing ruby validator to fail. Blew everything away and started over with a pdk new module. Then moved over all my code
1 parent 2c8f8f3 commit d1c4836

File tree

5 files changed

+31
-2
lines changed

5 files changed

+31
-2
lines changed

.sync.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# This file can be used to customize the files managed by PDK.
2+
#
3+
# See https://github.com/puppetlabs/pdk-templates/blob/main/README.md
4+
# for more information.
5+
#
6+
# See https://github.com/puppetlabs/pdk-templates/blob/main/config_defaults.yml
7+
# for the default values.
18
---
29
Gemfile:
310
optional:
@@ -30,4 +37,4 @@ spec/spec_helper.rb:
3037
EnforcedStyle: nested
3138

3239
appveyor.yml:
33-
unmanaged: true
40+
unmanaged: true
File renamed without changes.

data/common.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--- {}

hiera.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
version: 5
3+
4+
defaults: # Used for any hierarchy level that omits these keys.
5+
datadir: data # This path is relative to hiera.yaml's directory.
6+
data_hash: yaml_data # Use the built-in YAML backend.
7+
8+
hierarchy:
9+
- name: "osfamily/major release"
10+
paths:
11+
# Used to distinguish between Debian and Ubuntu
12+
- "os/%{facts.os.name}/%{facts.os.release.major}.yaml"
13+
- "os/%{facts.os.family}/%{facts.os.release.major}.yaml"
14+
# Used for Solaris
15+
- "os/%{facts.os.family}/%{facts.kernelrelease}.yaml"
16+
- name: "osfamily"
17+
paths:
18+
- "os/%{facts.os.name}.yaml"
19+
- "os/%{facts.os.family}.yaml"
20+
- name: 'common'
21+
path: 'common.yaml'

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"requirements": [
6161
{
6262
"name": "puppet",
63-
"version_requirement": ">= 6.0.0 < 7.0.0"
63+
"version_requirement": ">= 6.0.0 < 8.0.0"
6464
}
6565
],
6666
"tags": [

0 commit comments

Comments
 (0)