diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2014-12-06 00:14:11 +0100 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2014-12-06 00:14:11 +0100 |
| commit | ad900a84709bb6c2b751f9d5bed2ce7280c7dc04 (patch) | |
| tree | 89b121dbbbf08fc6dc5b91e867f203012075957a /liveusb/airootfs/root/.automated_script.sh | |
| parent | 1aca4d1a3d7a1a444cc555f81ad488ce1ab67522 (diff) | |
Soup up the config, use the releng profile
Diffstat (limited to 'liveusb/airootfs/root/.automated_script.sh')
| -rwxr-xr-x | liveusb/airootfs/root/.automated_script.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/liveusb/airootfs/root/.automated_script.sh b/liveusb/airootfs/root/.automated_script.sh new file mode 100755 index 0000000..81a98a1 --- /dev/null +++ b/liveusb/airootfs/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 |
