aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/iurt/user.pp
blob: b169ee2d9929f9d3efbf941b458ca146de0ddbc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class buildsystem::iurt::user {
    $login = 'iurt'
    $homedir = "/home/$login"

    buildsystem::sshuser { $login:
        homedir => $homedir,
        comment => 'System user used to run build bots',
    }

    file { '/etc/iurt':
        ensure => directory,
    }
}