Subversion Repositories configs

Rev

Rev 4 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4 Rev 19
Line 10... Line 10...
10
# description: This services starts and stops the USB Arbitrator.
10
# description: This services starts and stops the USB Arbitrator.
11
 
11
 
12
 
12
 
13
# Load bootstrapper info
13
# Load bootstrapper info
14
. /etc/vmware/bootstrap
14
. /etc/vmware/bootstrap
-
 
15
 
-
 
16
# This defines $rc_done and $rc_failed on S.u.S.E.
-
 
17
if [ -f /etc/rc.config ]; then
-
 
18
   # Don't include the entire file: there could be conflicts
-
 
19
   rc_done=`(. /etc/rc.config; echo "$rc_done")`
-
 
20
   rc_failed=`(. /etc/rc.config; echo "$rc_failed")`
-
 
21
else
-
 
22
   # Make sure the ESC byte is literal: Ash does not support echo -e
-
 
23
   rc_done=' done'
-
 
24
   rc_failed='failed'
-
 
25
fi
15
 
26
 
16
# This defines echo_success() and echo_failure() on RedHat
27
# This defines echo_success() and echo_failure() on RedHat
17
if [ -r "$INITSCRIPTDIR"'/functions' ]; then
28
if [ -r "$INITSCRIPTDIR"'/functions' ]; then
18
   . "$INITSCRIPTDIR"'/functions'
29
   . "$INITSCRIPTDIR"'/functions'
19
fi
30
fi