From 1be510f9529cb082f802408b472a77d074b394c0 Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Sun, 14 Apr 2013 13:46:12 +0000 Subject: Add zarb MLs html archives --- zarb-ml/mageia-sysadm/2010-November/000232.html | 119 ++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 zarb-ml/mageia-sysadm/2010-November/000232.html (limited to 'zarb-ml/mageia-sysadm/2010-November/000232.html') diff --git a/zarb-ml/mageia-sysadm/2010-November/000232.html b/zarb-ml/mageia-sysadm/2010-November/000232.html new file mode 100644 index 000000000..615aee686 --- /dev/null +++ b/zarb-ml/mageia-sysadm/2010-November/000232.html @@ -0,0 +1,119 @@ + + + + [Mageia-sysadm] [117] - add a alias for apache package ( so we can change the engine ) + + + + + + + + + +

[Mageia-sysadm] [117] - add a alias for apache package ( so we can change the engine )

+ root at mageia.org + root at mageia.org +
+ Fri Nov 5 01:12:11 CET 2010 +

+
+ +
Revision: 117
+Author:   misc
+Date:     2010-11-05 01:12:10 +0100 (Fri, 05 Nov 2010)
+Log Message:
+-----------
+- add a alias for apache package ( so we can change the engine )
+- add a file to cleanly add the 2 directive for VirtualHost on 80 and 443 
+without having to import the whole apache config in svn ( as this would be annoying to merge later ) 
+
+Modified Paths:
+--------------
+    puppet/modules/apache/manifests/init.pp
+
+Added Paths:
+-----------
+    puppet/modules/apache/templates/
+    puppet/modules/apache/templates/customization.conf
+
+Modified: puppet/modules/apache/manifests/init.pp
+===================================================================
+--- puppet/modules/apache/manifests/init.pp	2010-11-04 23:53:46 UTC (rev 116)
++++ puppet/modules/apache/manifests/init.pp	2010-11-05 00:12:10 UTC (rev 117)
+@@ -2,6 +2,7 @@
+ 
+     class base {
+         package { "apache-mpm-prefork":
++            alias => apache,
+             ensure => installed
+         }
+     
+@@ -10,6 +11,17 @@
+             ensure => running,
+             subscribe => [ Package['apache-mpm-prefork'] ],
+         }
++
++        file { "customization.conf":
++            ensure => present,
++            path => "/etc/httpd/conf/customization.conf",
++            content => template("apache/customization.conf"),
++            require => Package["apache"],
++            notify => Service["apache"],
++            owner => root,
++            group => root,
++            mode => 644,
++        }
+     }
+     
+     class mod_php inherits base {
+
+Added: puppet/modules/apache/templates/customization.conf
+===================================================================
+--- puppet/modules/apache/templates/customization.conf	                        (rev 0)
++++ puppet/modules/apache/templates/customization.conf	2010-11-05 00:12:10 UTC (rev 117)
+@@ -0,0 +1,2 @@
++NameVirtualHost *:80
++NameVirtualHost *:443
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: </pipermail/mageia-sysadm/attachments/20101105/2c60603f/attachment-0001.html>
+
+ + + + + + + +
+

+ +
+More information about the Mageia-sysadm +mailing list
+ -- cgit v1.2.1