From aa64cf3ddacf511babbba5bf272c62e17dccaaa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A2=D1=80=D0=B0=D1=86=D0=B5=D0=B2=D1=81=D0=BA=D0=B8?= =?UTF-8?q?=D0=B9=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80?= Date: Thu, 12 Aug 2010 09:31:32 +0400 Subject: [PATCH] Remove old script. --- .../ISO/calculate/etc/init.d/calculate | 45 ------------------- 1 file changed, 45 deletions(-) delete mode 100755 install/builder/profile/ISO/calculate/etc/init.d/calculate diff --git a/install/builder/profile/ISO/calculate/etc/init.d/calculate b/install/builder/profile/ISO/calculate/etc/init.d/calculate deleted file mode 100755 index 68dadf9..0000000 --- a/install/builder/profile/ISO/calculate/etc/init.d/calculate +++ /dev/null @@ -1,45 +0,0 @@ -#!/sbin/runscript -#-title-# - -depend() { - need localmount root fsck modules - before consolefont keymaps dbus - use swap -} - -start() { - /usr/calculate/install/calculate -P all - - /usr/sbin/env-update - source /etc/profile - /sbin/update-modules - - #?system=desktop# - LANG=C /usr/calculate/install/calculate --opengl - #system# - #-run_user-# - - # searching in cmdline using cdroot_type - for x in `cat /proc/cmdline`;do - case ${x} in - cdroot_type\=*) - NOEJECT="1" - ;; - esac - done - # if found caching image on RAM - eject CD - if [ -f /mnt/livecd.* -a "${NOEJECT}" != "1" ] || - [ -f /mnt/squash/livecd.* -a "${NOEJECT}" != "1" ]; - then - eject - fi -} - - -#stop() { - -#} - -#restart() { - -#}