diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-08 11:28:44 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-08 11:28:44 +0100 |
commit | 49c9d906fd74f51484977736d78f16095d4f1a69 (patch) | |
tree | a6a55f322a41436582816b9b7dd01bb02737d184 /code/environments/production/modules/certregen/lib/facter | |
parent | 25b23bb526cb794615ba185e0bd2e97c724fc44f (diff) | |
download | puppet.KATH-49c9d906fd74f51484977736d78f16095d4f1a69.tar.gz puppet.KATH-49c9d906fd74f51484977736d78f16095d4f1a69.tar.bz2 puppet.KATH-49c9d906fd74f51484977736d78f16095d4f1a69.zip |
code/environments/production/modules: Add module certgen.
Diffstat (limited to 'code/environments/production/modules/certregen/lib/facter')
3 files changed, 18 insertions, 0 deletions
diff --git a/code/environments/production/modules/certregen/lib/facter/has_puppet.rb b/code/environments/production/modules/certregen/lib/facter/has_puppet.rb new file mode 100644 index 0000000..05f2e80 --- /dev/null +++ b/code/environments/production/modules/certregen/lib/facter/has_puppet.rb @@ -0,0 +1,10 @@ +Facter.add(:has_puppet) do + setcode do + begin + require 'puppet' + true + rescue LoadError + false + end + end +end diff --git a/code/environments/production/modules/certregen/lib/facter/hostcrl.rb b/code/environments/production/modules/certregen/lib/facter/hostcrl.rb new file mode 100644 index 0000000..1d69a66 --- /dev/null +++ b/code/environments/production/modules/certregen/lib/facter/hostcrl.rb @@ -0,0 +1,4 @@ +Facter.add(:hostcrl) do + confine :has_puppet => true + setcode { Puppet[:hostcrl] } +end diff --git a/code/environments/production/modules/certregen/lib/facter/localcacert.rb b/code/environments/production/modules/certregen/lib/facter/localcacert.rb new file mode 100644 index 0000000..278ca8b --- /dev/null +++ b/code/environments/production/modules/certregen/lib/facter/localcacert.rb @@ -0,0 +1,4 @@ +Facter.add(:localcacert) do + confine :has_puppet => true + setcode { Puppet[:localcacert] } +end |