From 5631a973bfac0493af17735e281952dbb2f548de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Mon, 2 Apr 2012 17:01:19 +0300 Subject: [PATCH] Added /etc/sysconfig/httpsd file to apache::sslserver. --- apache/manifests/redhat.pp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apache/manifests/redhat.pp b/apache/manifests/redhat.pp index ef683fe..1ec10b9 100644 --- a/apache/manifests/redhat.pp +++ b/apache/manifests/redhat.pp @@ -173,6 +173,15 @@ class apache::redhat::sslserver { } } + file { "/etc/sysconfig/httpsd": + ensure => present, + content => "", + mode => "0644", + owner => "root", + group => "root", + notify => Service["httpsd"], + } + file { "/usr/sbin/httpsd": ensure => link, target => "/usr/sbin/httpd",