From 7646f26e425b0997818c450543b9bf5c70b6a26e Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 26 Oct 2015 17:50:31 +0100 Subject: initial commit Signed-off-by: Florian Pritz --- airootfs/root/.automated_script.sh | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 airootfs/root/.automated_script.sh (limited to 'airootfs/root/.automated_script.sh') diff --git a/airootfs/root/.automated_script.sh b/airootfs/root/.automated_script.sh new file mode 100755 index 0000000..68201c0 --- /dev/null +++ b/airootfs/root/.automated_script.sh @@ -0,0 +1,35 @@ +#!/bin/bash + +script_cmdline () +{ + local param + for param in $(< /proc/cmdline); do + case "${param}" in + script=*) echo "${param#*=}" ; return 0 ;; + esac + done +} + +automated_script () +{ + local script rt + script="$(script_cmdline)" + if [[ -n "${script}" && ! -x /tmp/startup_script ]]; then + if [[ "${script}" =~ ^http:// || "${script}" =~ ^ftp:// ]]; then + wget "${script}" --retry-connrefused -q -O /tmp/startup_script >/dev/null + rt=$? + else + cp "${script}" /tmp/startup_script + rt=$? + fi + if [[ ${rt} -eq 0 ]]; then + chmod +x /tmp/startup_script + /tmp/startup_script + fi + fi +} + +if [[ -x $0 ]]; then + chmod -x $0 + automated_script +fi -- cgit v1.2.3-24-g4f1b