diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-04-18 19:15:14 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-04-18 19:15:14 -0300 |
commit | 96e0488bf894b1b8cf5e33d743a798de5ffcb313 (patch) | |
tree | 4b37768741d513e89f61c16abc34408548ddcdc5 /manifests | |
parent | f16ea862ba82f6561417629b823a1c89c835b5fe (diff) | |
download | puppet-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.pp | 2 |
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"], } } |