You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-utils-1/install/profile/1default/etc/init.d/calculate?pass=install&remo...

39 lines
784 B

#!/sbin/runscript
#-title-#
depend() {
#?linuxver>=9.4.3#
need localmount root fsck modules keymaps consolefont hald
#linuxver#
#?linuxver<9.4.3#
need localmount checkroot checkfs modules keymaps consolefont hald
#linuxver#
}
start() {
LANG=C /usr/calculate/install/calculate --video
/usr/sbin/env-update
source /etc/profile
/sbin/update-modules
/sbin/rc-update --update
#?system=desktop#
#-run_opengl-#
#-run_user-#
#system#
LANG=C /usr/calculate/install/calculate --initrd
#поддержка flash для x86_64
if [ -e /usr/lib32/nsbrowser/plugins/libflashplayer.so ]
then
/usr/bin/nspluginwrapper -v -i /usr/lib32/nsbrowser/plugins/libflashplayer.so &>/dev/null && /usr/bin/nspluginwrapper -a
fi
}
stop() {
rc-update del calculate boot
}
#restart() {
#}