aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/sshkeys.pp
blob: 6161e38d4744b64110061d1270d10ea4632d1664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class buildsystem::sshkeys {
    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
    }
}