diff options
author | Michael Scherer <misc@mageia.org> | 2012-01-14 19:26:10 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-01-14 19:26:10 +0000 |
commit | 1e067b734674fc92b938c8b941e3ab886a34984d (patch) | |
tree | cbad085e624f4ea81bff0e46ce7f6b3e23b452c0 /manifests | |
parent | c973ccd87c56a318dd91b4c2a7bcbdce3580395f (diff) | |
download | puppet-1e067b734674fc92b938c8b941e3ab886a34984d.tar puppet-1e067b734674fc92b938c8b941e3ab886a34984d.tar.gz puppet-1e067b734674fc92b938c8b941e3ab886a34984d.tar.bz2 puppet-1e067b734674fc92b938c8b941e3ab886a34984d.tar.xz puppet-1e067b734674fc92b938c8b941e3ab886a34984d.zip |
make service run by default, to simplify the manifests
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/defaults.pp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/manifests/defaults.pp b/manifests/defaults.pp index be11fb90..de92d54e 100644 --- a/manifests/defaults.pp +++ b/manifests/defaults.pp @@ -26,6 +26,10 @@ User { shell => "/bin/bash", } +Service { + ensure => running, +} + define local_script($content, $owner = "root", $group = 'root', |