diff options
author | Esteban Carnevale <alfplayer@mailoo.org> | 2013-09-02 20:03:39 -0300 |
---|---|---|
committer | Esteban Carnevale <alfplayer@mailoo.org> | 2013-09-02 20:03:39 -0300 |
commit | 44b3b1e9b1f3309d825b2dda897ba0dd13169ace (patch) | |
tree | 3bc7d1c31e7cf55029c7d5f3305858f41b010538 /configs/releng/root-image/root/.automated_script.sh | |
parent | a5139a6e4ed897d59c900d8ea991c60a19d01862 (diff) |
Leave only directory for profile baselinerebrand/baseline
Diffstat (limited to 'configs/releng/root-image/root/.automated_script.sh')
-rwxr-xr-x | configs/releng/root-image/root/.automated_script.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/configs/releng/root-image/root/.automated_script.sh b/configs/releng/root-image/root/.automated_script.sh deleted file mode 100755 index fb106da..0000000 --- a/configs/releng/root-image/root/.automated_script.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/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 |