aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/buildnode.pp
blob: ce80376e7d5fd7ddceaf984eeb1ebae34d3aea0f (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::var

    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,
    }
}