Changeset 1680407 in bootscripts-standard for cblfs/init.d/haldaemon
- Timestamp:
- Oct 24, 2007, 8:45:54 PM (17 years ago)
- Branches:
- master
- Children:
- 6dee7fa
- Parents:
- 1d02f01
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cblfs/init.d/haldaemon
r1d02f01 r1680407 11 11 . $rc_functions 12 12 13 pidfile=/var/run/hald/pid 14 13 15 case "$1" in 14 16 start) 15 17 boot_mesg "Starting the HAL Daemon..." 16 loadproc /usr/sbin/hald --use-syslog18 loadproc -p $pidfile /usr/sbin/hald --use-syslog 17 19 ;; 18 20 19 21 stop) 20 22 boot_mesg "Stopping the HAL Daemon..." 21 killproc /usr/sbin/hald23 killproc -p $pidfile /usr/sbin/hald 22 24 ;; 23 25 … … 29 31 30 32 status) 31 statusproc /usr/sbin/hald33 statusproc -p $pidfile /usr/sbin/hald 32 34 ;; 33 35
Note:
See TracChangeset
for help on using the changeset viewer.