diff options
-rw-r--r-- | manifests/defaults.pp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/manifests/defaults.pp b/manifests/defaults.pp index 68e621c1..b2d7d886 100644 --- a/manifests/defaults.pp +++ b/manifests/defaults.pp @@ -1,4 +1,15 @@ -# to not repeat the setting everywhere -Exec { path => "/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin/" } +# to not repeat the settings everywhere +Exec { + path => "/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin/", +} +Package { + ensure => "present", +} + +File { + ensure => "present", + owner => root, + group => root, +} |