packages/net/autossh/files/autossh.hotplug
Christian Beier 0648e9e71e
autossh: import from oldpackages
Signed-off-by: Christian Beier <cb@shoutrlabs.com>
2016-09-06 13:51:24 +02:00

14 lines
204 B
Bash

#!/bin/sh
# Copyright (C) 2007 OpenWrt.org
/etc/init.d/autossh enabled && {
[ "$ACTION" = "ifup" ] && {
/etc/init.d/autossh start
}
[ "$ACTION" = "ifdown" ] && {
/etc/init.d/autossh stop
}
}