]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/raidmpt/manifests/init.pp
massive style guide fixups
[dsa-puppet.git] / modules / raidmpt / manifests / init.pp
index 814fd5b405467886c63e29401309046a54260a0e..c6884aa8ea03612534525cd249014df60d5f7ce8 100644 (file)
@@ -1,21 +1,16 @@
 class raidmpt {
-    package {
-        mpt-status: ensure => installed;
-    }
 
-    file {
-        "/etc/default/mpt-statusd":
-            content =>  "# This file is under puppet control\nRUN_DAEMON=no\n",
-            notify  => Exec["mpt-statusd-stop"],
-            ;
-    }
-    exec {
-        "mpt-statusd-stop":
-            command => 'pidfile=/var/run/mpt-statusd.pid; ! [ -e "$pidfile" ] || /sbin/start-stop-daemon --oknodo --stop --signal TERM --quiet --pidfile "$pidfile"; rm -f "$pidfile";  pkill -INT  -P 1 -u 0 -f "/usr/bin/daemon /etc/init.d/mpt-statusd check_mpt"',
-            refreshonly => true,
-            ;
-    }
+       package { 'mpt-status':
+               ensure => installed
+       }
+
+       file { '/etc/default/mpt-statusd':
+               content => "# This file is under puppet control\nRUN_DAEMON=no\n",
+               notify  => Exec['mpt-statusd-stop'],
+       }
+
+       exec { 'mpt-statusd-stop':
+               command => 'pidfile=/var/run/mpt-statusd.pid; ! [ -e "$pidfile" ] || /sbin/start-stop-daemon --oknodo --stop --signal TERM --quiet --pidfile "$pidfile"; rm -f "$pidfile";  pkill -INT  -P 1 -u 0 -f "/usr/bin/daemon /etc/init.d/mpt-statusd check_mpt"',
+               refreshonly => true,
+       }
 }
-# vim:set et:
-# vim:set sts=4 ts=4:
-# vim:set shiftwidth=4: