aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-04-18 19:15:14 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-04-18 19:15:14 -0300
commit96e0488bf894b1b8cf5e33d743a798de5ffcb313 (patch)
tree4b37768741d513e89f61c16abc34408548ddcdc5 /manifests
parentf16ea862ba82f6561417629b823a1c89c835b5fe (diff)
downloadpuppet-nodo-96e0488bf894b1b8cf5e33d743a798de5ffcb313.tar.gz
puppet-nodo-96e0488bf894b1b8cf5e33d743a798de5ffcb313.tar.bz2
Using subscribe instead of notify for locale-gen
Diffstat (limited to 'manifests')
-rw-r--r--manifests/subsystems/locale.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/subsystems/locale.pp b/manifests/subsystems/locale.pp
index 40afdbc..60ba4a3 100644
--- a/manifests/subsystems/locale.pp
+++ b/manifests/subsystems/locale.pp
@@ -19,10 +19,10 @@ class locale {
owner => root,
group => root,
mode => 0644,
- notify => Exec['locale-gen'],
}
exec { "locale-gen":
refreshonly => true,
+ subscribe => File["/etc/locale.gen"],
}
}