Subversion Repositories livecd

Rev

Rev 129 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 129 Rev 131
Line 46... Line 46...
46
ONEMASTER=$( cmdline_parameter onemaster )
46
ONEMASTER=$( cmdline_parameter onemaster )
47
 
47
 
48
# fast booting ?
48
# fast booting ?
49
FASTBOOT=$( cmdline_parameter fastboot )
49
FASTBOOT=$( cmdline_parameter fastboot )
50
 
50
 
-
 
51
# no (auto) kudzu ?
-
 
52
NOKUDZU=$( cmdline_parameter nokudzu )
-
 
53
 
51
# if run=rdesktop, we do fast boot
54
# if run=rdesktop, we do fast boot
52
if [ "$( cmdline_value run )" = "rdesktop" ]; then
55
if [ "$( cmdline_value run )" = "rdesktop" ]; then
53
    FASTBOOT="fastboot"
56
    FASTBOOT="fastboot"
54
fi
57
fi
55
 
58
 
Line 102... Line 105...
102
### enable AFS during start up, if given by boot parameter
105
### enable AFS during start up, if given by boot parameter
103
if [ $AFS ]; then
106
if [ $AFS ]; then
104
    chkconfig afs on
107
    chkconfig afs on
105
fi
108
fi
106
 
109
 
-
 
110
### disable auto-kudzu
-
 
111
if [ $NOKUDZU ]; then
-
 
112
    chkconfig kudzu-auto off
-
 
113
fi
-
 
114
 
107
### disable some services for fast booting
115
### disable some services for fast booting
108
if [ $FASTBOOT ]; then    
116
if [ $FASTBOOT ]; then    
109
    echo "Fast booting enabled"
117
    echo "Fast booting enabled"
110
    chkconfig vpnclient_init off  2>/dev/null
118
    chkconfig vpnclient_init off  2>/dev/null
111
    chkconfig haldaemon off       2>/dev/null
119
    chkconfig haldaemon off       2>/dev/null