From: Silvio Rhatto Date: Sun, 18 Apr 2010 22:15:14 +0000 (-0300) Subject: Using subscribe instead of notify for locale-gen X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=96e0488bf894b1b8cf5e33d743a798de5ffcb313;p=puppet-nodo.git Using subscribe instead of notify for locale-gen --- 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"], } }