diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-08 11:51:10 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-08 11:51:10 +0100 |
commit | 74e2687fa98ea5ba25fbe07c038253d1fc14584e (patch) | |
tree | a390be820f6b3bd91f849acb41415d610e41b186 /code/environments/production/modules/certregen/lib/facter | |
parent | 49c9d906fd74f51484977736d78f16095d4f1a69 (diff) | |
download | puppet.KATH-74e2687fa98ea5ba25fbe07c038253d1fc14584e.tar.gz puppet.KATH-74e2687fa98ea5ba25fbe07c038253d1fc14584e.tar.bz2 puppet.KATH-74e2687fa98ea5ba25fbe07c038253d1fc14584e.zip |
code/environments/production/modules: Drop certregen module again.
Diffstat (limited to 'code/environments/production/modules/certregen/lib/facter')
3 files changed, 0 insertions, 18 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 deleted file mode 100644 index 05f2e80..0000000 --- a/code/environments/production/modules/certregen/lib/facter/has_puppet.rb +++ /dev/null @@ -1,10 +0,0 @@ -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 deleted file mode 100644 index 1d69a66..0000000 --- a/code/environments/production/modules/certregen/lib/facter/hostcrl.rb +++ /dev/null @@ -1,4 +0,0 @@ -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 deleted file mode 100644 index 278ca8b..0000000 --- a/code/environments/production/modules/certregen/lib/facter/localcacert.rb +++ /dev/null @@ -1,4 +0,0 @@ -Facter.add(:localcacert) do - confine :has_puppet => true - setcode { Puppet[:localcacert] } -end |