#!/bin/sh #BLURB="Enable/disable lash activation at boot" T_PX=$1 TMP=/var/log/setup/tmp if [ "$COLOR" = "on" -o -r $TMP/SeTcolor ]; then dialog --title "ENABLE LASH SUBSYSTEM AT BOOT?" --yesno \ "Lash is a GNU/Linux session management system for audio applications. \ Lash can be started at boottime but this only makes sense if you start \ Jack at boottime." 8 70 if [ $? = 0 ]; then mkdir -p /etc/rc.d/rc3.d /etc/rc.d/rc3.d ln -s /etc/rc.d/init.d/lash /etc/rc.d/rc3.d/K95lash ln -s /etc/rc.d/init.d/lash /etc/rc.d/rc3.d/S05lash ln -s /etc/rc.d/init.d/lash /etc/rc.d/rc4.d/K95lash ln -s /etc/rc.d/init.d/lash /etc/rc.d/rc4.d/S05lash else rm -f /etc/rc.d/rc3.d/K95lash /etc/rc.d/rc3.d/S05lash /etc/rc.d/rc4.d/K95lash /etc/rc.d/rc4.d/S05lash fi fi