From 5bb9b1620a40ff4365054954cf973588269bbb43 Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 1 Apr 2011 19:00:53 +0200 Subject: Move automated_script from /etc/functions.d to /etc/rc.d/functions.d --- .../overlay/etc/functions.d/automated_script | 23 ---------------------- .../overlay/etc/rc.d/functions.d/automated_script | 23 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 23 deletions(-) delete mode 100644 configs/syslinux-iso/overlay/etc/functions.d/automated_script create mode 100644 configs/syslinux-iso/overlay/etc/rc.d/functions.d/automated_script (limited to 'configs') 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 diff --git a/configs/syslinux-iso/overlay/etc/rc.d/functions.d/automated_script b/configs/syslinux-iso/overlay/etc/rc.d/functions.d/automated_script new file mode 100644 index 0000000..09f04b8 --- /dev/null +++ b/configs/syslinux-iso/overlay/etc/rc.d/functions.d/automated_script @@ -0,0 +1,23 @@ +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 -- cgit v1.2.3-54-g00ecf