index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Charles <ce@vejnar.org> | 2011-04-01 19:00:53 +0200 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2011-04-01 14:31:53 -0300 |
commit | 5bb9b1620a40ff4365054954cf973588269bbb43 (patch) | |
tree | a42904769ee308f19244e8aa29dd3ed6f423d8c8 /configs/syslinux-iso/overlay/etc/functions.d | |
parent | 76061c8c7dbab96226e31f4e40c30c92006a1697 (diff) |
-rw-r--r-- | configs/syslinux-iso/overlay/etc/functions.d/automated_script | 23 |
diff --git a/configs/syslinux-iso/overlay/etc/functions.d/automated_script b/configs/syslinux-iso/overlay/etc/functions.d/automated_script deleted file mode 100644 index 09f04b8..0000000 --- a/configs/syslinux-iso/overlay/etc/functions.d/automated_script +++ /dev/null @@ -1,23 +0,0 @@ -automated_script () -{ - script="$(kernel_cmdline script)" - if [ -n $script ] ; then - stat_busy "Configuring $script" - if [[ $script =~ ^http:// || $script =~ ^ftp:// ]] ; then - wget "$script" -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 - echo -e "\nif [ \`tty\` = \"/dev/tty1\" ] ; then\n /tmp/startup_script\nfi\n" >> /root/.bash_profile - stat_done - else - stat_fail - fi - fi -} - -add_hook multi_end automated_script |