Revision
497
Author
misc
Date
2010-12-02 02:30:22 +0100 (Thu, 02 Dec 2010)

Log Message

add ordering to the ssl cert creation ( so apache do not fail when reloaded )

Modified Paths

Modified: puppet/modules/apache/manifests/init.pp
===================================================================
--- puppet/modules/apache/manifests/init.pp	2010-12-01 20:34:41 UTC (rev 496)
+++ puppet/modules/apache/manifests/init.pp	2010-12-02 01:30:22 UTC (rev 497)
@@ -100,7 +100,8 @@
         if $use_ssl {
             include apache::mod_ssl
             openssl::self_signed_cert{ "$name":
-                directory => "/etc/ssl/apache/"
+                directory => "/etc/ssl/apache/",
+                before => File["$name.conf"],
             }
         }