diff --git a/REFERENCE.md b/REFERENCE.md index c81de631..d38a01ba 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -1026,7 +1026,7 @@ systemd::manage_unit { 'myrunner.service': 'ExecStart' => '/usr/bin/doit.sh', }, install_entry => { - WantedBy => 'multi-user.target', + 'WantedBy' => 'multi-user.target', }, } ``` @@ -1040,8 +1040,8 @@ systemd::manage_unit { 'passwd-mon.path': 'Description' => 'Monitor the passwd file', }, path_entry => { - 'PathModified => '/etc/passwd', - 'Unit' => 'passwd-mon.service', + 'PathModified' => '/etc/passwd', + 'Unit' => 'passwd-mon.service', }, install_entry => { 'WantedBy' => 'multi-user.target', diff --git a/manifests/manage_unit.pp b/manifests/manage_unit.pp index 920e0ddc..7aefe5f9 100644 --- a/manifests/manage_unit.pp +++ b/manifests/manage_unit.pp @@ -14,7 +14,7 @@ # 'ExecStart' => '/usr/bin/doit.sh', # }, # install_entry => { -# WantedBy => 'multi-user.target', +# 'WantedBy' => 'multi-user.target', # }, # } # @@ -25,8 +25,8 @@ # 'Description' => 'Monitor the passwd file', # }, # path_entry => { -# 'PathModified => '/etc/passwd', -# 'Unit' => 'passwd-mon.service', +# 'PathModified' => '/etc/passwd', +# 'Unit' => 'passwd-mon.service', # }, # install_entry => { # 'WantedBy' => 'multi-user.target',