aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/sshkeys.pp
blob: 14edbe2fd7384a7f15c1116e0b29dd91e234cf82 (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::var::iurt

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

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