1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #!/bin/sh
- ########################################################################
- # Begin haveged
- #
- # Description : Start haveged daemon
- #
- # Author : Bruce Dubbs - bdubbs@linuxfromscratch.org
- #
- # Version : LFS 7.5
- #
- ########################################################################
- ### BEGIN INIT INFO
- # Provides: haveged
- # Required-Start:
- # Should-Start:
- # Required-Stop:
- # Should-Stop:
- # Default-Start: 3 4 5
- # Default-Stop: 0 1 2 6
- # Short-Description: haveged daemon
- # Description: Provide increased entropy to /dev/random
- # X-LFS-Provided-By: BLFS / LFS 7.6
- ### END INIT INFO
- . /lib/lsb/init-functions
- #$LastChangedBy: bdubbs $
- #$Date: 2012-05-09 15:19:23 -0500 (Wed, 09 May 2012) $
- case "$1" in
- start)
- log_info_msg "Starting haveged..."
- start_daemon /usr/sbin/haveged
- evaluate_retval
- ;;
- stop)
- log_info_msg "Stopping haveged..."
- killproc /usr/sbin/haveged
- evaluate_retval
- ;;
-
- status)
- statusproc /usr/sbin/haveged
- ;;
- *)
- echo "Usage: $0 {start|stop|status}"
- exit 1
- ;;
- esac
- # End haveged
|