aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bcd/manifests/init.pp
blob: 428321cdf85df48362e2c21d2bb8ac63f061c6ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class bcd {
    class variable {
        $bcd_login = 'bcd'
        $bcd_home = '/home/bcd'
    }

    class base inherits variable {
	include sudo

        buildsystem::sshuser { $bcd_login:
            homedir => $bcd_home,
            comment => "User for creating ISOs",
	}

        package { bcd:
	    ensure => 'installed',
        }

        sudo::sudoers_config { "bcd":
	    content => template("bcd/sudoers.bcd")
        }
    }
}