summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2021-09-07 16:01:18 +0200
committerSimon Rettberg2021-09-07 16:01:18 +0200
commitaaca43844522aa58b3e0eea855c488cc7b47336e (patch)
tree4d67132d655b08de2abe887a85b86cca322ddbe7
parent[qemu] Fix invalid call of looking-glass-client in debug mode (diff)
downloadmltk-aaca43844522aa58b3e0eea855c488cc7b47336e.tar.gz
mltk-aaca43844522aa58b3e0eea855c488cc7b47336e.tar.xz
mltk-aaca43844522aa58b3e0eea855c488cc7b47336e.zip
[dhcpc-busybox] Use gawk
-rwxr-xr-xcore/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx2
-rw-r--r--core/modules/dhcpc-busybox/module.conf3
-rw-r--r--core/modules/dhcpc-busybox/module.conf.ubuntu5
3 files changed, 9 insertions, 1 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 3e30da55..b661633c 100755
--- a/core/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx
+++ b/core/modules/dhcpc-busybox/data/opt/openslx/scripts/udhcpc-openslx
@@ -39,7 +39,7 @@ rebuild_resolv_conf () {
# group everything else together into one line.
# Skip domain entirely if any search lines are found.
cat "/run/network/$primary.resolv" /run/network/!("$primary").resolv \
- | awk '{
+ | gawk '{
if ( $1 ~ /^[a-z]+$/ ) {
for (i = 2; i <= NF; ++i) {
if (done[$1][$i])
diff --git a/core/modules/dhcpc-busybox/module.conf b/core/modules/dhcpc-busybox/module.conf
index d8961801..612863b9 100644
--- a/core/modules/dhcpc-busybox/module.conf
+++ b/core/modules/dhcpc-busybox/module.conf
@@ -2,3 +2,6 @@
REQUIRED_MODULES="
rdns
"
+REQUIRED_BINARIES="
+ gawk
+"
diff --git a/core/modules/dhcpc-busybox/module.conf.ubuntu b/core/modules/dhcpc-busybox/module.conf.ubuntu
new file mode 100644
index 00000000..06767018
--- /dev/null
+++ b/core/modules/dhcpc-busybox/module.conf.ubuntu
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+REQUIRED_CONTENT_PACKAGES="
+ gawk
+"