From 79e8c7a15691973317afd8e90208d6ac3573a102 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Sat, 7 Jan 2012 22:17:50 +0000 Subject: explictely set default value for Package and file, thus permitting us to remove it from the rest of the manifests --- manifests/defaults.pp | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'manifests') 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, +} -- cgit v1.2.1