Displaying 1 result from an estimated 1 matches for "puppet_standalone".
2010 Mar 16
1
hard to define
...directory /var/local/preseed/ to be present.
I wonder what''s the best way to create this directory? Within the
init.pp of the specific module, e.g ?.:
class authentication {
# general module settings
$module_name = "authentication"
$module_path = "$puppet_standalone/modules/$module_name"
# preseed functionality
file { "/var/local/preseed":
owner => root, group => root, mode => 755,
ensure => "directory",
}
}
Or perhaps even at the top of preseed_package.pp?
Best R...