diff options
author | Darkeye <postfach@martinmichel.info> | 2011-01-22 19:05:59 (GMT) |
---|---|---|
committer | Darkeye <postfach@martinmichel.info> | 2011-01-22 19:05:59 (GMT) |
commit | 6f17837384b415ec5327d6ca28ede720385db851 (patch) | |
tree | 45e64feae5e75fe18e796248fd226bba51813859 /files/etc/hotplug.d | |
parent | aad5d035de56bea1b1ed0ed91ee26bd01622ffed (diff) |
Egon0 requested: Blue LED if VPN is online and RED Led if VPN is Off but HNA is online
Diffstat (limited to 'files/etc/hotplug.d')
-rw-r--r-- | files/etc/hotplug.d/iface/22-wan_led | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/etc/hotplug.d/iface/22-wan_led b/files/etc/hotplug.d/iface/22-wan_led index bee5e9e..c0a7aa4 100644 --- a/files/etc/hotplug.d/iface/22-wan_led +++ b/files/etc/hotplug.d/iface/22-wan_led @@ -1,9 +1,9 @@ #!/bin/sh case "${ACTION:-ifup}" in ifup) - gpioctl set 1 + gpioctl set 3 ;; ifdown) - gpioctl dirout 1 + gpioctl dirout 3 ;; esac |