summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-02-08 03:39:26 -0200
committerSilvio Rhatto <rhatto@riseup.net>2016-02-08 03:39:26 -0200
commit79ab7354805d48bc545edc3c50b529698c2fe9e4 (patch)
tree5aa1bd52f30517e8e880aca81a7143b57f91ca6e
parent124f2db6ab5c47d4c72499b86f0ed6b9363da025 (diff)
downloadpuppet-cron-79ab7354805d48bc545edc3c50b529698c2fe9e4.tar.gz
puppet-cron-79ab7354805d48bc545edc3c50b529698c2fe9e4.tar.bz2
Coding styleHEADmaster
-rw-r--r--manifests/init.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 3319a62..357b43c 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,13 +1,13 @@
class cron {
package{ 'cron':
- ensure => present,
+ ensure => present,
}
service{ 'cron':
- ensure => running,
- enable => true,
- hasstatus => false,
- pattern => "/usr/sbin/cron",
- require => Package['cron'],
+ ensure => running,
+ enable => true,
+ hasstatus => false,
+ pattern => "/usr/sbin/cron",
+ require => Package['cron'],
}
}