diff options
Diffstat (limited to 'zarb-ml/mageia-sysadm/2010-November/000418.html')
-rw-r--r-- | zarb-ml/mageia-sysadm/2010-November/000418.html | 133 |
1 files changed, 133 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/2010-November/000418.html b/zarb-ml/mageia-sysadm/2010-November/000418.html new file mode 100644 index 000000000..3650c97f4 --- /dev/null +++ b/zarb-ml/mageia-sysadm/2010-November/000418.html @@ -0,0 +1,133 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> +<HTML> + <HEAD> + <TITLE> [Mageia-sysadm] [215] add sudo module + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B215%5D%20add%20sudo%20module&In-Reply-To=%3C20101109224805.417903FC19%40valstar.mageia.org%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + <LINK REL="Previous" HREF="000417.html"> + <LINK REL="Next" HREF="000419.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[Mageia-sysadm] [215] add sudo module</H1> + <B>root at mageia.org</B> + <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B215%5D%20add%20sudo%20module&In-Reply-To=%3C20101109224805.417903FC19%40valstar.mageia.org%3E" + TITLE="[Mageia-sysadm] [215] add sudo module">root at mageia.org + </A><BR> + <I>Tue Nov 9 23:48:05 CET 2010</I> + <P><UL> + <LI>Previous message: <A HREF="000417.html">[Mageia-sysadm] [214] Remove the secret key from the file ( even if this is not the one used ) +</A></li> + <LI>Next message: <A HREF="000419.html">[Mageia-sysadm] [216] add sudoers rule for iurt +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#418">[ date ]</a> + <a href="thread.html#418">[ thread ]</a> + <a href="subject.html#418">[ subject ]</a> + <a href="author.html#418">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>Revision: 215 +Author: boklm +Date: 2010-11-09 23:48:04 +0100 (Tue, 09 Nov 2010) +Log Message: +----------- +add sudo module + +Added Paths: +----------- + puppet/modules/sudo/ + puppet/modules/sudo/manifests/ + puppet/modules/sudo/manifests/init.pp + puppet/modules/sudo/templates/ + puppet/modules/sudo/templates/sudoers + +Added: puppet/modules/sudo/manifests/init.pp +=================================================================== +--- puppet/modules/sudo/manifests/init.pp (rev 0) ++++ puppet/modules/sudo/manifests/init.pp 2010-11-09 22:48:04 UTC (rev 215) +@@ -0,0 +1,20 @@ ++class sudo { ++ package { sudo: ++ ensure => installed; ++ } ++ ++ file { "/etc/sudoers.d": ++ ensure => directory, ++ mode => 700, ++ owner => root, ++ group => root, ++ } ++ ++ file { "/etc/sudoers": ++ ensure => present, ++ owner => root, ++ group => root, ++ mode => 600, ++ content => template("sudo/sudoers") ++ } ++} + +Added: puppet/modules/sudo/templates/sudoers +=================================================================== +--- puppet/modules/sudo/templates/sudoers (rev 0) ++++ puppet/modules/sudo/templates/sudoers 2010-11-09 22:48:04 UTC (rev 215) +@@ -0,0 +1 @@ ++#includedir /etc/sudoers.d +-------------- next part -------------- +An HTML attachment was scrubbed... +URL: </pipermail/mageia-sysadm/attachments/20101109/e544f6fc/attachment-0001.html> +</PRE> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="000417.html">[Mageia-sysadm] [214] Remove the secret key from the file ( even if this is not the one used ) +</A></li> + <LI>Next message: <A HREF="000419.html">[Mageia-sysadm] [216] add sudoers rule for iurt +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#418">[ date ]</a> + <a href="thread.html#418">[ thread ]</a> + <a href="subject.html#418">[ subject ]</a> + <a href="author.html#418">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm +mailing list</a><br> +</body></html> |