From 96a68750a1ba9791291a94db2f73d1c3b3ffdf20 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 06 Aug 2014 10:42:01 -0400 Subject: Add networking hooks for udhcpd --- (limited to 'src.etc/network/functions') diff --git a/src.etc/network/functions b/src.etc/network/functions new file mode 100644 index 0000000..b74fb91 --- /dev/null +++ b/src.etc/network/functions @@ -0,0 +1,41 @@ +#!/bin/sh + +case "${0}" in + /etc/network/if-*.d/*) ;; + *) exit 1;; +esac +if [ "x${IFACE}" = 'x' ]; then + exit 1 +fi + +get_iface_opts() +{ + local opts_start_cb="${1}" + local opt_cb="${2}" + local opts_end_cb="${3}" + local script= + local opts= + local opt= + + script="$(printf ' + /^iface[ \\t][ \\t]*%s/,/^[^ \\t]/{ + /^$/q; + s/^[ \\t][ \\t]*//p; + } + ' "${IFACE}")" + + opts="$(sed -n "${script}" /var/run/net-ifaces)" + if [ "x${opts}" = 'x' ]; then + return 0 + fi + + ${opts_start_cb} + while read -r opt; do + ${opt_cb} ${opt} + done <<-EOF + ${opts} + EOF + ${opts_end_cb} + + return 0 +} -- cgit v0.9.1