/[adm]/puppet/modules/bcd/manifests/init.pp
ViewVC logotype

Contents of /puppet/modules/bcd/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 848 - (show annotations) (download)
Tue Jan 18 18:42:28 2011 UTC (13 years, 3 months ago) by boklm
File size: 441 byte(s)
ssh_access not needed anymore
1 class bcd {
2 class variable {
3 $bcd_login = 'bcd'
4 $bcd_home = '/home/bcd'
5 }
6
7 class base inherits variable {
8 include sudo
9
10 buildsystem::sshuser { $bcd_login:
11 homedir => $bcd_home,
12 comment => "User for creating ISOs",
13 }
14
15 package { bcd:
16 ensure => 'installed',
17 }
18
19 sudo::sudoers_config { "bcd":
20 content => template("bcd/sudoers.bcd")
21 }
22 }
23 }

  ViewVC Help
Powered by ViewVC 1.1.30