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

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

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