aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/buildnode.pp
blob: 997dba2f849fb09ee6b43459adefa9fcaa585861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class buildsystem::buildnode {
    include buildsystem::iurt
    include buildsystem::var::scheduler
    include buildsystem::var::iurt
    include buildsystem::sshkeys

    sshkeys::set_authorized_keys { 'iurt-allow-scheduler':
        keyname => $buildsystem::var::scheduler::login,
        home => $buildsystem::var::iurt::homedir,
        user => $buildsystem::var::iurt::login,
    }
}