1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Mageia-sysadm] [814] - add a module to generate gnupg key ( similar to the one for openssl
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B814%5D%20-%20add%20a%20module%20to%20generate%20gnupg%20key%20%28%0A%09similar%20to%20the%20one%20for%20openssl&In-Reply-To=%3C20110117152410.82E09427CD%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="002153.html">
<LINK REL="Next" HREF="002155.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-sysadm] [814] - add a module to generate gnupg key ( similar to the one for openssl</H1>
<B>root at mageia.org</B>
<A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B814%5D%20-%20add%20a%20module%20to%20generate%20gnupg%20key%20%28%0A%09similar%20to%20the%20one%20for%20openssl&In-Reply-To=%3C20110117152410.82E09427CD%40valstar.mageia.org%3E"
TITLE="[Mageia-sysadm] [814] - add a module to generate gnupg key ( similar to the one for openssl">root at mageia.org
</A><BR>
<I>Mon Jan 17 16:24:10 CET 2011</I>
<P><UL>
<LI>Previous message: <A HREF="002153.html">[Mageia-sysadm] [813] add a new class to do a mirror of a svn reporitory ( for display purpose with viewvc or any others )
</A></li>
<LI>Next message: <A HREF="002155.html">[Mageia-sysadm] [814] - add a module to generate gnupg key ( similar to the one for openssl
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#2154">[ date ]</a>
<a href="thread.html#2154">[ thread ]</a>
<a href="subject.html#2154">[ subject ]</a>
<a href="author.html#2154">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>Revision: 814
Author: misc
Date: 2011-01-17 16:24:10 +0100 (Mon, 17 Jan 2011)
Log Message:
-----------
- add a module to generate gnupg key ( similar to the one for openssl
certs )
Added Paths:
-----------
puppet/modules/gnupg/
puppet/modules/gnupg/manifests/
puppet/modules/gnupg/manifests/init.pp
puppet/modules/gnupg/templates/
puppet/modules/gnupg/templates/batch
puppet/modules/gnupg/templates/create_gnupg_keys.sh
Added: puppet/modules/gnupg/manifests/init.pp
===================================================================
--- puppet/modules/gnupg/manifests/init.pp (rev 0)
+++ puppet/modules/gnupg/manifests/init.pp 2011-01-17 15:24:10 UTC (rev 814)
@@ -0,0 +1,54 @@
+class gnupg {
+ class client {
+ package { ["gnupg","rng-utils"]:
+ ensure => present,
+ }
+
+ file { ["/etc/gnupg", "/etc/gnupg/batches"]:
+ ensure => directory,
+ }
+
+ file { "/etc/gnupg/keys":
+ ensure => directory,
+ mode => 600,
+ owner => root,
+ group => root
+ }
+
+ file { "/usr/local/bin/create_gnupg_keys.sh":
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 755,
+ content => template('gnupg/create_gnupg_keys.sh')
+ }
+ }
+
+ # debian recommend SHA2, with 4096
+ # <A HREF="http://wiki.debian.org/Keysigning">http://wiki.debian.org/Keysigning</A>
+ # as they are heavy users of gpg, I will tend
+ # to follow them
+ # however, for testing purpose, 4096 is too strong,
+ # this empty the entropy of my vm
+ define keys( $email,
+ $key_name,
+ $key_type = 'RSA',
+ $key_length = '1024',
+ $expire_date = '1m'
+ ) {
+
+ include gnupg::client
+ file { "$name.batch":
+ ensure => present,
+ path => "/etc/gnupg/batches/$name.batch",
+ content => template("gnupg/batch")
+ }
+
+ # TODO make sure the perm are good
+ exec { "/usr/local/bin/create_gnupg_keys.sh $name":
+ user => root,
+ creates => "/etc/gnupg/keys/$name.secring",
+ require => File["/etc/gnupg/batches/$name.batch"]
+ }
+ }
+}
Added: puppet/modules/gnupg/templates/batch
===================================================================
--- puppet/modules/gnupg/templates/batch (rev 0)
+++ puppet/modules/gnupg/templates/batch 2011-01-17 15:24:10 UTC (rev 814)
@@ -0,0 +1,12 @@
+%echo Generating a standard key
+Key-Type: <%= key_type %>
+Key-Length: <%= key_length %>
+Name-Real: <%= key_name %>
+Name-Comment: Key made by puppet on <%= fqdn %>
+Name-Email: <%= email %>
+Expire-Date: <%= expire_date %>
+%pubring <%= name %>.pub
+%secring <%= name %>.sec
+%commit
+%echo done
+
Added: puppet/modules/gnupg/templates/create_gnupg_keys.sh
===================================================================
--- puppet/modules/gnupg/templates/create_gnupg_keys.sh (rev 0)
+++ puppet/modules/gnupg/templates/create_gnupg_keys.sh 2011-01-17 15:24:10 UTC (rev 814)
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+NAME=$1
+
+/sbin/rngd -f -r /dev/urandom &
+RAND=$!
+cd /etc/gnupg/keys/
+gpg --homedir /etc/gnupg/keys/ --batch --gen-key /etc/gnupg/batches/$NAME.batch
+EXIT=$?
+
+kill $RAND
+
+exit $EXIT
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/mageia-sysadm/attachments/20110117/d4cbbe29/attachment-0001.html>
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="002153.html">[Mageia-sysadm] [813] add a new class to do a mirror of a svn reporitory ( for display purpose with viewvc or any others )
</A></li>
<LI>Next message: <A HREF="002155.html">[Mageia-sysadm] [814] - add a module to generate gnupg key ( similar to the one for openssl
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#2154">[ date ]</a>
<a href="thread.html#2154">[ thread ]</a>
<a href="subject.html#2154">[ subject ]</a>
<a href="author.html#2154">[ 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>
|