diff options
author | mh <mh@immerda.ch> | 2011-07-07 01:20:27 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2011-07-07 01:20:27 +0200 |
commit | 9dba5a3ee02a10d5f308b444712367cab0be0ecf (patch) | |
tree | d6f35fda05f2800d9c575560d0f167a64435cf0f | |
parent | c6eac76d3dcfeef6a228098c44f920219b9de3dd (diff) | |
download | puppet-ekeyd-9dba5a3ee02a10d5f308b444712367cab0be0ecf.tar.gz puppet-ekeyd-9dba5a3ee02a10d5f308b444712367cab0be0ecf.tar.bz2 |
fixing service name
-rw-r--r-- | manifests/egd/debian.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/egd/debian.pp b/manifests/egd/debian.pp index f96fe6c..e586e82 100644 --- a/manifests/egd/debian.pp +++ b/manifests/egd/debian.pp @@ -11,10 +11,10 @@ class ekeyd::egd::debian inherits ekeyd::egd { } Service["egd-linux"] { - ensure => running, - hasrestart => true, - pattern => '/usr/sbin/ekeyd-egd-linux', - subscribe => File["/etc/default/ekeyd-egd-linux"], + name => 'ekeyd-egd-linux', + ensure => running, + hasstatus => true, + subscribe => File["/etc/default/ekeyd-egd-linux"], } file { "/etc/default/ekeyd-egd-linux": |