use absolute paths in include() shell function

SVN-Revision: 4852
This commit is contained in:
Felix Fietkau 2006-09-24 13:32:18 +00:00
parent 643cdb2818
commit da625de806
6 changed files with 6 additions and 6 deletions

View File

@ -93,7 +93,7 @@ load_modules() {
}
include() {
for file in $(ls /lib/$1/*.sh 2>/dev/null); do
for file in $(ls $1/*.sh 2>/dev/null); do
. $file
done
}

View File

@ -1,6 +1,6 @@
# Copyright (C) 2006 OpenWrt.org
include network
include /lib/network
addif() {
scan_interfaces

View File

@ -4,6 +4,6 @@
setup_switch() { return 0; }
. /etc/functions.sh
include network
include /lib/network
setup_switch
/sbin/wifi

View File

@ -3,7 +3,7 @@
[ $# = 0 ] && { echo " $0 <group>"; exit; }
. /etc/functions.sh
include network
include /lib/network
scan_interfaces
cfg=$1

View File

@ -30,7 +30,7 @@ config_cb() {
}
config_load wireless
include wifi
include /lib/wifi
for device in $DEVICES; do (
config_get iftype "$device" type

View File

@ -1,7 +1,7 @@
#!/bin/sh
[ -z "$1" ] && echo "Error: should be run by udhcpc" && exit 1
. /etc/functions.sh
include network
include /lib/network
RESOLV_CONF="/tmp/resolv.conf"