From 703af9dc9078d41909af18e2eab20a7963414d0d Mon Sep 17 00:00:00 2001 From: David P Date: Mon, 6 Nov 2017 17:18:46 -0300 Subject: Add configs/lxde-openrc Remove configs/mate and configs/mate-openrc --- .../root-image/root/.automated_script.sh | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 configs/lxde-openrc/root-image/root/.automated_script.sh (limited to 'configs/lxde-openrc/root-image/root/.automated_script.sh') diff --git a/configs/lxde-openrc/root-image/root/.automated_script.sh b/configs/lxde-openrc/root-image/root/.automated_script.sh new file mode 100755 index 0000000..fb106da --- /dev/null +++ b/configs/lxde-openrc/root-image/root/.automated_script.sh @@ -0,0 +1,34 @@ +#!/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 [[ $(tty) == "/dev/tty1" ]]; then + automated_script +fi -- cgit v1.2.2