cumin service: add batch mode, remove killmode authored by anarcat's avatar anarcat
killmode is useless in this context, and BatchMode is actually made
for this...
...@@ -82,9 +82,7 @@ Description=Setup port forward to puppetdb ...@@ -82,9 +82,7 @@ Description=Setup port forward to puppetdb
After=network.target After=network.target
[Service] [Service]
ExecStart=/usr/bin/ssh -nNT -o ExitOnForwardFailure=yes -L 8080:localhost:8080 puppetdb-01.torproject.org ExecStart=/usr/bin/ssh -nNT -o ExitOnForwardFailure=yes -o BatchMode=yes -L 8080:localhost:8080 puppetdb-01.torproject.org
KillMode=mixed
``` ```
With this in place, make sure that systemd has loaded this unit file: With this in place, make sure that systemd has loaded this unit file:
... ...
......