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

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

    ssh::auth::key { $buildsystem::iurt::user::login:
	home => $buildsystem::iurt::user::homedir
    }
}