aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/sshkeys.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/buildsystem/manifests/sshkeys.pp')
-rw-r--r--modules/buildsystem/manifests/sshkeys.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/buildsystem/manifests/sshkeys.pp b/modules/buildsystem/manifests/sshkeys.pp
new file mode 100644
index 00000000..6161e38d
--- /dev/null
+++ b/modules/buildsystem/manifests/sshkeys.pp
@@ -0,0 +1,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
+ }
+}