summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2016-01-29 19:33:23 +0100
committermh <mh@immerda.ch>2016-01-29 19:34:15 +0100
commit9af8b4274e47b9c89be3368fa6981fd6ab464cb9 (patch)
tree2f4978472364f350e8c66074929203554163aace /manifests
parentb478a4eb162d5a3a117c44ef9b49f20462facf50 (diff)
make sure we manage things after the package
Diffstat (limited to 'manifests')
-rw-r--r--manifests/yaml.pp6
1 files changed, 4 insertions, 2 deletions
diff --git a/manifests/yaml.pp b/manifests/yaml.pp
index aca164b..7727219 100644
--- a/manifests/yaml.pp
+++ b/manifests/yaml.pp
@@ -26,7 +26,8 @@ class trocla::yaml(
ensure => directory,
owner => puppet,
group => 0,
- mode => '0600';
+ mode => '0600',
+ require => Package['trocla'];
}
}
file{
@@ -34,6 +35,7 @@ class trocla::yaml(
ensure => file,
owner => puppet,
group => 0,
- mode => '0600';
+ mode => '0600',
+ require => Package['trocla'];
}
}