aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/buildnode.pp
blob: 69907564ce2afd5a4214a92758ad492b3d3e2d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class buildsystem::buildnode {
    include buildsystem::base
    include buildsystem::iurt
    include buildsystem::scheduler::user

    ssh::auth::key { $buildsystem::scheduler::var::login:
        home => $buildsystem::scheduler::var::homedir,

    }
    # permit to scheduler to run iurt
    ssh::auth::server { $buildsystem::scheduler::var::login:
        user => $buildsystem::iurt::user::login,
    }
}