From 32322960234c8ec91e0d42835a3ec5ee63305070 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 2 Feb 2019 11:00:00 +0100 Subject: Adding upstream version 20190202. Signed-off-by: Daniel Baumann --- system-config/components/9990-hooks | 84 +++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100755 system-config/components/9990-hooks (limited to 'system-config/components/9990-hooks') diff --git a/system-config/components/9990-hooks b/system-config/components/9990-hooks new file mode 100755 index 0000000..26d071d --- /dev/null +++ b/system-config/components/9990-hooks @@ -0,0 +1,84 @@ +#!/bin/sh + +## live-config(7) - System Configuration Components +## Copyright (C) 2006-2015 Daniel Baumann +## +## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING. +## This is free software, and you are welcome to redistribute it +## under certain conditions; see COPYING for details. + + +#set -e + +Cmdline () +{ + # Reading kernel command line + for _PARAMETER in ${LIVE_CONFIG_CMDLINE} + do + case "${_PARAMETER}" in + live-config.hooks=*|hooks=*) + LIVE_HOOKS="${_PARAMETER#*hooks=}" + ;; + esac + done +} + +Init () +{ + if [ -z "${LIVE_HOOKS}" ] + then + exit 0 + fi + + echo -n " hooks" +} + +Config () +{ + for _HOOK in $(echo ${LIVE_HOOKS} | sed -e 's/|/ /g') + do + case "${_HOOK}" in + filesystem) + if ls /lib/live/config-hooks/* 2>&1 + then + _HOOKS="${_HOOKS} $(for _FILE in /lib/live/config-hooks/*; do echo file://${_FILE}; done)" + fi + ;; + + medium) + if ls /lib/live/mount/medium/live/config-hooks/* 2>&1 + then + _HOOKS="${_HOOKS} $(for _FILE in /lib/live/mount/medium/live/config-hooks/*; do echo file://${_FILE}; done)" + fi + ;; + + *) + _HOOKS="${_HOOKS} ${_HOOK}" + ;; + esac + done + + for _HOOK in ${_HOOKS} + do + _TMPFILE="$(mktemp -t live-config.XXXXXXXX)" + + if echo "${_HOOK}" | grep -qs file:// + then + # local file + cp $(echo ${_HOOK} | sed 's|file://||') "${_TMPFILE}" + else + # remote file + Setup_network + + wget --quiet "${_HOOK}" -O "${_TMPFILE}" + fi + + chmod 0755 "${_TMPFILE}" + "${_TMPFILE}" + rm -f "${_TMPFILE}" + done +} + +Cmdline +Init +Config -- cgit v1.2.3