Running without systemd
The NoPorts daemon doesn't have to be run by systemd
#!/bin/bash
BACKOFF_INTERVAL=10
while true; do
sshnpd
sleep "$BACKOFF_INTERVAL"
donenohup sshnpd > sshnpd.log 2> sshnpd.err < /dev/null &Last updated
The NoPorts daemon doesn't have to be run by systemd
#!/bin/bash
BACKOFF_INTERVAL=10
while true; do
sshnpd
sleep "$BACKOFF_INTERVAL"
donenohup sshnpd > sshnpd.log 2> sshnpd.err < /dev/null &Last updated