diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-11-05 23:20:15 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-11-05 23:20:15 +0100 |
commit | fb02e51c9292d5ae52e57ae506cd69e817217228 (patch) | |
tree | e04ced89d0aaf041645efbf7f5ea13deb441a718 /code | |
parent | 6a38405e3a3f19d2773708ca5d391f8b7a9a147a (diff) | |
download | puppet.KATH-fb02e51c9292d5ae52e57ae506cd69e817217228.tar.gz puppet.KATH-fb02e51c9292d5ae52e57ae506cd69e817217228.tar.bz2 puppet.KATH-fb02e51c9292d5ae52e57ae506cd69e817217228.zip |
site.pp: Fix path to bash executable.
Diffstat (limited to 'code')
-rw-r--r-- | code/environments/production/manifests/site.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index ad872fc..f4055f2 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -162,7 +162,7 @@ class cups_browsed_polling { } exec { 'cups-delete-dead-printers': - command => '/usr/bin/bash -c "LANG=C lpstat -a | grep \"not accepting requests\" | cut -d \" \" -f1 | while read printer; do lpadmin -x \$printer; done"', + command => '/bin/bash -c "LANG=C lpstat -a | grep \"not accepting requests\" | cut -d \" \" -f1 | while read printer; do lpadmin -x \$printer; done"', subscribe => File_line['cups-browsed-no-remote-protos'], refreshonly => true, } |