diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2021-11-05 22:52:53 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2021-11-05 22:52:53 -0400 |
| commit | 8a86b310630fab17256339fa18f26d8d5c190199 (patch) | |
| tree | 418f07e13f90bbc84f57e628b2caf147bf729170 /airootfs/root/.automated_script.sh | |
| download | alee-boot-utility-8a86b310630fab17256339fa18f26d8d5c190199.tar.gz alee-boot-utility-8a86b310630fab17256339fa18f26d8d5c190199.tar.bz2 alee-boot-utility-8a86b310630fab17256339fa18f26d8d5c190199.zip | |
Inital commit
Diffstat (limited to 'airootfs/root/.automated_script.sh')
| -rwxr-xr-x | airootfs/root/.automated_script.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/airootfs/root/.automated_script.sh b/airootfs/root/.automated_script.sh new file mode 100755 index 0000000..5c0c316 --- /dev/null +++ b/airootfs/root/.automated_script.sh @@ -0,0 +1,34 @@ +#!/usr/bin/env 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|https|ftp)://) ]]; then + curl "${script}" --location --retry-connrefused -s -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 |
