Added "chkconfig --add" to httpsd service.

This commit is contained in:
Timo Mkinen 2013-01-22 15:47:36 +02:00
parent b7ed946994
commit 7ee51d6f4c

View file

@ -176,7 +176,13 @@ class apache::redhat::sslserver {
mode => "0755",
owner => "root",
group => "root",
before => Service["httpsd"],
notify => Exec["chkconfig --add httpsd"],
}
exec { "chkconfig --add httpsd":
user => "root",
path => "/bin:/usr/bin:/sbin:/usr/sbin",
refreshonly => true,
before => Service["httpsd"],
}
}
}