Puppet Function: simplib::passgen::simpkv::root_dir
- Defined in:
- lib/puppet/functions/simplib/passgen/simpkv/root_dir.rb
- Function type:
- Ruby 4.x API
Overview
Returns the root directory in simpkv for password info generated by simplib::passgen
4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/puppet/functions/simplib/passgen/simpkv/root_dir.rb', line 4 Puppet::Functions.create_function(:'simplib::passgen::simpkv::root_dir') do # @return [String] root directory in simpkv for password info generated by # simplib::passgen # dispatch :root_dir do end # Mechanism to share this constant without dealing with environment # cross contamination def root_dir 'gen_passwd' end end |