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/000710.html | 105 ++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 zarb-ml/mageia-sysadm/2010-November/000710.html (limited to 'zarb-ml/mageia-sysadm/2010-November/000710.html') diff --git a/zarb-ml/mageia-sysadm/2010-November/000710.html b/zarb-ml/mageia-sysadm/2010-November/000710.html new file mode 100644 index 000000000..606faa46d --- /dev/null +++ b/zarb-ml/mageia-sysadm/2010-November/000710.html @@ -0,0 +1,105 @@ + + + + [Mageia-sysadm] [354] - create user/group with puppet, with the bin directory so the cron task doesn't fail + + + + + + + + + +

[Mageia-sysadm] [354] - create user/group with puppet, with the bin directory so the cron task doesn't fail

+ root at mageia.org + root at mageia.org +
+ Sun Nov 21 19:05:23 CET 2010 +

+
+ +
Revision: 354
+Author:   misc
+Date:     2010-11-21 19:05:23 +0100 (Sun, 21 Nov 2010)
+Log Message:
+-----------
+- create user/group with puppet, with the bin directory so the cron task doesn't fail
+
+Modified Paths:
+--------------
+    puppet/modules/mirror/manifests/init.pp
+
+Modified: puppet/modules/mirror/manifests/init.pp
+===================================================================
+--- puppet/modules/mirror/manifests/init.pp	2010-11-21 17:47:29 UTC (rev 353)
++++ puppet/modules/mirror/manifests/init.pp	2010-11-21 18:05:23 UTC (rev 354)
+@@ -9,6 +9,26 @@
+         content => template("mirror/update_timestamp")
+     }
+ 
++    file { "/home/mirror/bin/":
++        ensure => directory,
++        owner => mirror,
++        group => mirror,
++        mode => 755
++    }
++
++    group {"mirror":
++        ensure => present,
++    }
++
++    user {"mirror":
++        ensure => present,
++        comment => "System user use to run mirror scripts",
++        managehome => true,
++        gid => mirror,
++        shell => "/bin/bash",
++    }
++
++
+     cron { mirror:
+         user => mirror,
+         hour => 10,
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: </pipermail/mageia-sysadm/attachments/20101121/238d4abf/attachment.html>
+
+ + + + + + + +
+

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