2016-09-06 11:51:24 +00:00
|
|
|
#!/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
|
|
|
|
}
|
2018-04-11 18:22:17 +00:00
|
|
|
|
2016-09-06 11:51:24 +00:00
|
|
|
}
|