/[adm]/puppet/deployment/softwarekey/manifests/init.pp
ViewVC logotype

Annotation of /puppet/deployment/softwarekey/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1299 - (hide annotations) (download)
Tue Mar 8 19:04:56 2011 UTC (13 years, 1 month ago) by boklm
Original Path: puppet/deployment/releasekey/manifests/init.pp
File size: 812 byte(s)
fix require
1 boklm 1295 class releasekey {
2     class variable {
3     $sign_login = "releasekey"
4     $sign_home_dir = "/var/lib/$sign_login"
5     $sign_keydir = "$sign_home_dir/keys"
6     }
7    
8     class base inherits variable {
9 boklm 1298 group {"$sign_login":
10     ensure => present,
11     }
12    
13     user {"$sign_login":
14     ensure => present,
15 boklm 1295 comment => "System user to sign Mageia Releases",
16 boklm 1298 managehome => true,
17     home => $sign_home_dir,
18     gid => $sign_login,
19     shell => "/bin/bash",
20     require => Group[$sign_login],
21 boklm 1295 }
22    
23     gnupg::keys{"release":
24     email => "release@$domain",
25     #FIXME there should be a variable somewhere to change the name of the distribution
26     key_name => 'Mageia Release',
27     login => $sign_login,
28     batchdir => "$sign_home_dir/batches",
29     keydir => $sign_keydir,
30 boklm 1299 require => User[$sign_login],
31 boklm 1295 }
32     }
33     }

  ViewVC Help
Powered by ViewVC 1.1.30