mirror of
https://github.com/hak5/nano-tetra-packages-community.git
synced 2025-10-29 16:59:28 +00:00
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
|
|
}
|
|
|
|
}
|