summaryrefslogtreecommitdiffstats
path: root/net/autossh/files/autossh.hotplug
blob: 0e73cae4c33b9f9e5fd1547085cb23db99ee15f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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
	}

}