diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-06-30 21:13:45 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-06-30 21:13:45 -0300 |
commit | 3b5b4163d075393005d95e0b72f47c8025a86807 (patch) | |
tree | d3fd2ea32fc5d9fe083ceb4a5367232f30e363ab | |
parent | 110c37f7d1c315c67b267fa52839fbf8be4e4520 (diff) | |
download | puppet-ekeyd-3b5b4163d075393005d95e0b72f47c8025a86807.tar.gz puppet-ekeyd-3b5b4163d075393005d95e0b72f47c8025a86807.tar.bz2 |
Minor fix
-rw-r--r-- | files/debian/default | 3 | ||||
-rw-r--r-- | manifests/debian.pp | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/files/debian/default b/files/debian/default index 8ce76c3..f2ddd07 100644 --- a/files/debian/default +++ b/files/debian/default @@ -1,5 +1,4 @@ -# THIS FILE MANAGED BY PUPPET +# THIS FILE IS MANAGED BY PUPPET # Change to NO to prevent ekeyd starting on boot START_EKEYD=YES - diff --git a/manifests/debian.pp b/manifests/debian.pp index 8a2e911..5f3f061 100644 --- a/manifests/debian.pp +++ b/manifests/debian.pp @@ -14,7 +14,7 @@ class ekeyd::debian inherits ekeyd::base { } Service["ekeyd"] { - subscribe => [ File["/etc/default/ekeyd"], File["/etc/entropykey/ekeyd.conf"] ]; + subscribe => [ File["/etc/default/ekeyd"], File["/etc/entropykey/ekeyd.conf"] ], pattern => '/usr/sbin/ekeyd', hasrestart => true, } |