ff1d7d7b71
git-svn-id: svn://svn.openwrt.org/openwrt/packages@16985 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
204 B
Bash
15 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
|
|
}
|
|
|
|
}
|