diff options
author | Olivier Blin <blino@mageia.org> | 2010-11-22 07:29:23 +0000 |
---|---|---|
committer | Olivier Blin <blino@mageia.org> | 2010-11-22 07:29:23 +0000 |
commit | 6eeebc1f4c6f1027be3b43ce635c42dbccffb2db (patch) | |
tree | 07abf91dc81597bb7a19272005d7af6596ab2e8e /modules/buildsystem/manifests | |
parent | 1e4fcca05c08f43f02174d6870cac1e7aa889e5a (diff) | |
download | puppet-6eeebc1f4c6f1027be3b43ce635c42dbccffb2db.tar puppet-6eeebc1f4c6f1027be3b43ce635c42dbccffb2db.tar.gz puppet-6eeebc1f4c6f1027be3b43ce635c42dbccffb2db.tar.bz2 puppet-6eeebc1f4c6f1027be3b43ce635c42dbccffb2db.tar.xz puppet-6eeebc1f4c6f1027be3b43ce635c42dbccffb2db.zip |
ensure home is a directory
Diffstat (limited to 'modules/buildsystem/manifests')
-rw-r--r-- | modules/buildsystem/manifests/init.pp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/buildsystem/manifests/init.pp b/modules/buildsystem/manifests/init.pp index 735c92b2..610cb9f4 100644 --- a/modules/buildsystem/manifests/init.pp +++ b/modules/buildsystem/manifests/init.pp @@ -50,6 +50,10 @@ class buildsystem { shell => "/bin/bash", } + file { $build_home_dir: + ensure => "directory", + } + file { "$build_home_dir/.ssh": ensure => "directory", mode => 600, |