7 lines
195 B
SYSTEMD
7 lines
195 B
SYSTEMD
|
[Unit]
|
||
|
Description=Remove all printers
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
ExecStart=sh -c 'lpstat -p && for printer in $(lpstat -p | cut -f 2 -d " "); do lpadmin -x $printer; done || echo no printer found.'
|