diff options
-rw-r--r-- | modules/buildsystem/manifests/init.pp | 12 | ||||
-rw-r--r-- | modules/buildsystem/manifests/mgacreatehome.pp | 14 |
2 files changed, 14 insertions, 12 deletions
diff --git a/modules/buildsystem/manifests/init.pp b/modules/buildsystem/manifests/init.pp index 2ff3b90d..54c687e0 100644 --- a/modules/buildsystem/manifests/init.pp +++ b/modules/buildsystem/manifests/init.pp @@ -547,18 +547,6 @@ class buildsystem { } } - # temporary script to create home dir with ssh key - # taking login and url as arguments - class mgacreatehome { - file { "/usr/local/sbin/mgacreatehome": - ensure => present, - owner => root, - group => root, - mode => 700, - content => template("buildsystem/mgacreatehome") - } - } - class check_missing_deps { file { "/usr/local/bin/missing-deps.sh": ensure => present, diff --git a/modules/buildsystem/manifests/mgacreatehome.pp b/modules/buildsystem/manifests/mgacreatehome.pp new file mode 100644 index 00000000..bf1c6c1d --- /dev/null +++ b/modules/buildsystem/manifests/mgacreatehome.pp @@ -0,0 +1,14 @@ +class buildsystem { + # temporary script to create home dir with ssh key + # taking login and url as arguments + class mgacreatehome { + file { "/usr/local/sbin/mgacreatehome": + ensure => present, + owner => root, + group => root, + mode => 700, + content => template("buildsystem/mgacreatehome") + } + } +} + |