summaryrefslogtreecommitdiffstats
path: root/net/autossh/files/autossh.hotplug
blob: 4f695f44c1cacd6771bcf19725caebfa892e33ba (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
	}
	
}