diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-05 16:04:23 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-05 16:04:23 +0000 |
commit | 9ae901445be2f33658142e401556818edbafaaf7 (patch) | |
tree | d8595eead1ed3c62440f17d6398343a1029a5be6 /package/6in4 | |
parent | 9a61b249c5a355ce95747200302e353a0d30bea0 (diff) | |
download | upstream-9ae901445be2f33658142e401556818edbafaaf7.tar.gz upstream-9ae901445be2f33658142e401556818edbafaaf7.tar.bz2 upstream-9ae901445be2f33658142e401556818edbafaaf7.zip |
/etc/functions.sh => /lib/functions.sh
SVN-Revision: 32062
Diffstat (limited to 'package/6in4')
-rw-r--r-- | package/6in4/files/6in4.hotplug | 2 | ||||
-rwxr-xr-x | package/6in4/files/6in4.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/6in4/files/6in4.hotplug b/package/6in4/files/6in4.hotplug index 8d78555477..e94179828b 100644 --- a/package/6in4/files/6in4.hotplug +++ b/package/6in4/files/6in4.hotplug @@ -1,7 +1,7 @@ #!/bin/sh if [ "$ACTION" = ifup ]; then - . /etc/functions.sh + . /lib/functions.sh INCLUDE_ONLY=1 . /lib/netifd/proto/6in4.sh diff --git a/package/6in4/files/6in4.sh b/package/6in4/files/6in4.sh index 6e433ba9ad..dd438601fa 100755 --- a/package/6in4/files/6in4.sh +++ b/package/6in4/files/6in4.sh @@ -3,7 +3,7 @@ # Copyright (c) 2010 OpenWrt.org [ -n "$INCLUDE_ONLY" ] || { - . /etc/functions.sh + . /lib/functions.sh . ../netifd-proto.sh init_proto "$@" } |