mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 08:29:10 +08:00
15 lines
203 B
Bash
15 lines
203 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
|
|
}
|
|
|
|
}
|