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/000208.html | 96 +++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 zarb-ml/mageia-sysadm/2010-November/000208.html (limited to 'zarb-ml/mageia-sysadm/2010-November/000208.html') diff --git a/zarb-ml/mageia-sysadm/2010-November/000208.html b/zarb-ml/mageia-sysadm/2010-November/000208.html new file mode 100644 index 000000000..898d45a00 --- /dev/null +++ b/zarb-ml/mageia-sysadm/2010-November/000208.html @@ -0,0 +1,96 @@ + + + + [Mageia-sysadm] [95] - fix missing default argument + + + + + + + + + +

[Mageia-sysadm] [95] - fix missing default argument

+ root at mageia.org + root at mageia.org +
+ Thu Nov 4 18:14:35 CET 2010 +

+
+ +
Revision: 95
+Author:   misc
+Date:     2010-11-04 18:14:35 +0100 (Thu, 04 Nov 2010)
+Log Message:
+-----------
+- fix missing default argument
+
+Modified Paths:
+--------------
+    puppet/modules/subversion/manifests/init.pp
+
+Modified: puppet/modules/subversion/manifests/init.pp
+===================================================================
+--- puppet/modules/subversion/manifests/init.pp	2010-11-04 17:06:29 UTC (rev 94)
++++ puppet/modules/subversion/manifests/init.pp	2010-11-04 17:14:35 UTC (rev 95)
+@@ -37,7 +37,7 @@
+ 
+     # TODO ensure that subversion ishere
+     #      allow to configure the snapshot refresh interval
+-    define snapshot($source, $refresh, $user = 'root')  {
++    define snapshot($source, $refresh = '*/5', $user = 'root')  {
+         exec { "/usr/bin/svn co $source $name":
+             creates => $name,           
+             user => $user,  
+@@ -46,7 +46,7 @@
+         cron { "update $name":
+            command => "cd $name && /usr/bin/svn update -q",
+            user => $user,
+-           minute => '*/5'
++           minute => $refresh
+         }   
+     }
+ }
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: </pipermail/mageia-sysadm/attachments/20101104/fa9edc2a/attachment-0001.html>
+
+ + + + + + + +
+

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