use absolute paths in include() shell function
SVN-Revision: 4852
This commit is contained in:
parent
643cdb2818
commit
da625de806
6 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright (C) 2006 OpenWrt.org
|
||||
|
||||
include network
|
||||
include /lib/network
|
||||
|
||||
addif() {
|
||||
scan_interfaces
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
setup_switch() { return 0; }
|
||||
|
||||
. /etc/functions.sh
|
||||
include network
|
||||
include /lib/network
|
||||
setup_switch
|
||||
/sbin/wifi
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
||||
. /etc/functions.sh
|
||||
include network
|
||||
include /lib/network
|
||||
scan_interfaces
|
||||
|
||||
cfg=$1
|
||||
|
|
|
@ -30,7 +30,7 @@ config_cb() {
|
|||
}
|
||||
|
||||
config_load wireless
|
||||
include wifi
|
||||
include /lib/wifi
|
||||
|
||||
for device in $DEVICES; do (
|
||||
config_get iftype "$device" type
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue