aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/sshkeys.pp
blob: bf8b4eb8aa4b798bde871463abf6412e4fba3f47 (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
    }
}