diff options
author | Michael Scherer <misc@mageia.org> | 2011-06-15 17:17:24 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-06-15 17:17:24 +0000 |
commit | 8b9ab1e66a0e877369155eff85e86a6efe92a447 (patch) | |
tree | 4887cf9381829c756b3a483ebe43a00cef22d8de | |
parent | ea8a89bfd7604a06358cbbe0106d79a47bf55953 (diff) | |
download | puppet-8b9ab1e66a0e877369155eff85e86a6efe92a447.tar puppet-8b9ab1e66a0e877369155eff85e86a6efe92a447.tar.gz puppet-8b9ab1e66a0e877369155eff85e86a6efe92a447.tar.bz2 puppet-8b9ab1e66a0e877369155eff85e86a6efe92a447.tar.xz puppet-8b9ab1e66a0e877369155eff85e86a6efe92a447.zip |
create /srv/ since filesystem do not provides it
-rw-r--r-- | deployment/common/manifests/init.pp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/deployment/common/manifests/init.pp b/deployment/common/manifests/init.pp index 48ce65f1..1502eb75 100644 --- a/deployment/common/manifests/init.pp +++ b/deployment/common/manifests/init.pp @@ -99,6 +99,11 @@ class common { include puppet::client include xymon::client + # provided by lsb-core, but it also pull + # various unneeded stuff for our server + file { "/srv/": + ensure => directory + } } |