diff options
author | mh <mh@immerda.ch> | 2013-01-02 11:43:18 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2013-01-02 11:43:18 +0100 |
commit | 43cba80d2ede774ecf91cb26531ecbca0f097551 (patch) | |
tree | 51f3dbde6868f456def5652ea4076a06263a33f1 /manifests/faillog | |
parent | 868c2bee3b8c77a01bdd2b003c0560c3006a0f8f (diff) | |
download | puppet-loginrecords-43cba80d2ede774ecf91cb26531ecbca0f097551.tar.gz puppet-loginrecords-43cba80d2ede774ecf91cb26531ecbca0f097551.tar.bz2 |
linting according to puppet-lint
Diffstat (limited to 'manifests/faillog')
-rw-r--r-- | manifests/faillog/disable.pp | 7 | ||||
-rw-r--r-- | manifests/faillog/enable.pp | 11 |
2 files changed, 10 insertions, 8 deletions
diff --git a/manifests/faillog/disable.pp b/manifests/faillog/disable.pp index c05e6bc..4e1df4e 100644 --- a/manifests/faillog/disable.pp +++ b/manifests/faillog/disable.pp @@ -1,9 +1,10 @@ +# do not log any faillog class loginrecords::faillog::disable inherits loginrecords::faillog::enable{ Replace['loginrecords-faillog']{ - pattern => '^FAILLOG_ENAB[[:space:]]+yes$', - replacement => 'FAILLOG_ENAB no', + pattern => '^FAILLOG_ENAB[[:space:]]+yes$', + replacement => "FAILLOG_ENAB\tno", } Line['loginrecords-faillog']{ - line => 'FAILLOG_ENAB no', + line => "FAILLOG_ENAB\tno", } } diff --git a/manifests/faillog/enable.pp b/manifests/faillog/enable.pp index c714b74..d600f6f 100644 --- a/manifests/faillog/enable.pp +++ b/manifests/faillog/enable.pp @@ -1,14 +1,15 @@ +# manage faillog logging class loginrecords::faillog::enable( $login_defs_file = '/etc/login.defs' ) { replace{'loginrecords-faillog': - file => $login_defs_file, - pattern => '^FAILLOG_ENAB[[:space]]+no$', - replacement => 'FAILLOG_ENAB yes', + file => $loginrecords::faillog::enable::login_defs_file, + pattern => '^FAILLOG_ENAB[[:space]]+no$', + replacement => "FAILLOG_ENAB\tyes", } line{'loginrecords-faillog': - file => $login_defs_file, - line => 'FAILLOG_ENAB yes', + file => $loginrecords::faillog::enable::login_defs_file, + line => "FAILLOG_ENAB\tyes", require => Replace['loginrecords-faillog'], } } |