Skip to content

Commit 674feea

Browse files
committed
Run pdk convert
1 parent 7de3ecb commit 674feea

22 files changed

+1049
-194
lines changed

.fixtures.yml

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
11
fixtures:
22
symlinks:
33
sssd: "#{source_dir}"
4+
forge_modules:
5+
augeasproviders_core:
6+
repo: "herculesteam/augeasproviders_core"
7+
ref: "2.6.0"
8+
bodgitlib:
9+
repo: "bodgit/bodgitlib"
10+
ref: "2.0.1"
11+
datacat:
12+
repo: "richardc/datacat"
13+
ref: "0.6.2"
14+
dbus:
15+
repo: "bodgit/dbus"
16+
ref: "2.0.1"
17+
ip:
18+
repo: "thrnio/ip"
19+
ref: "1.0.1"
20+
stdlib:
21+
repo: "puppetlabs/stdlib"
22+
ref: "4.25.1"

.gitattributes

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.rb eol=lf
2+
*.erb eol=lf
3+
*.pp eol=lf
4+
*.sh eol=lf
5+
*.epp eol=lf

.gitignore

+26-11
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
1-
.librarian
2-
.tmp
3-
.vagrant
1+
.git/
2+
.*.sw[op]
3+
.metadata
44
.yardoc
5-
Gemfile.lock
6-
Puppetfile.lock
7-
spec/fixtures/manifests
8-
spec/fixtures/modules
9-
pkg
10-
log
11-
coverage
12-
doc
5+
.yardwarns
6+
*.iml
7+
/.bundle/
8+
/.idea/
9+
/.vagrant/
10+
/coverage/
11+
/bin/
12+
/doc/
13+
/Gemfile.local
14+
/Gemfile.lock
15+
/junit/
16+
/log/
17+
/pkg/
18+
/spec/fixtures/manifests/
19+
/spec/fixtures/modules/
20+
/tmp/
21+
/vendor/
22+
/convert_report.txt
23+
/update_report.txt
24+
.DS_Store
25+
.project
26+
.envrc
27+
/inventory.yaml

.pdkignore

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.git/
2+
.*.sw[op]
3+
.metadata
4+
.yardoc
5+
.yardwarns
6+
*.iml
7+
/.bundle/
8+
/.idea/
9+
/.vagrant/
10+
/coverage/
11+
/bin/
12+
/doc/
13+
/Gemfile.local
14+
/Gemfile.lock
15+
/junit/
16+
/log/
17+
/pkg/
18+
/spec/fixtures/manifests/
19+
/spec/fixtures/modules/
20+
/tmp/
21+
/vendor/
22+
/convert_report.txt
23+
/update_report.txt
24+
.DS_Store
25+
.project
26+
.envrc
27+
/inventory.yaml
28+
/appveyor.yml
29+
/.fixtures.yml
30+
/Gemfile
31+
/.gitattributes
32+
/.gitignore
33+
/.gitlab-ci.yml
34+
/.pdkignore
35+
/.puppet-lint.rc
36+
/Rakefile
37+
/rakelib/
38+
/.rspec
39+
/.rubocop.yml
40+
/.travis.yml
41+
/.yardopts
42+
/spec/
43+
/.vscode/
44+
/.sync.yml
45+
/.devcontainer/

.puppet-lint.rc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--fail-on-warnings
2+
--relative

.rspec

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--format documentation

0 commit comments

Comments
 (0)