summaryrefslogtreecommitdiffstats
path: root/core/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx
diff options
context:
space:
mode:
authorSimon Rettberg2017-10-27 17:22:48 +0200
committerSimon Rettberg2017-10-27 17:22:48 +0200
commitf4841254ada770b12d6a950f609d60ce100a8544 (patch)
treeeeedb3cb99d420af5bf587f1ca2490faa34d62cc /core/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx
parent[vmware] Fix mouse grab hack for vmplayer (diff)
downloadmltk-f4841254ada770b12d6a950f609d60ce100a8544.tar.gz
mltk-f4841254ada770b12d6a950f609d60ce100a8544.tar.xz
mltk-f4841254ada770b12d6a950f609d60ce100a8544.zip
[rfs-stage31/dhcp] "Fix" DHCP setup logic
Like this can ever be fixed...
Diffstat (limited to 'core/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx')
-rwxr-xr-xcore/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx b/core/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx
index 13de9ff4..d0fb2410 100755
--- a/core/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx
+++ b/core/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx
@@ -112,8 +112,8 @@ case "$1" in
# Search domains
if [ -n "$search" ]; then
printf -v CONF "${CONF}search $search\n"
- elif [ -n "$SLX_SEARCH_DOMAIN" ]; then
- printf -v CONF "${CONF}search $SLX_SEARCH_DOMAIN\n"
+ elif [ -n "$SLX_NET_SEARCH" ]; then
+ printf -v CONF "${CONF}search $SLX_NET_SEARCH\n"
elif [ -n "$SLX_NET_DOMAIN" ]; then
printf -v CONF "${CONF}search $SLX_NET_DOMAIN\n"
fi