From 66cb4a487ad73063c6b000279a5d5558fb7603f5 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 13 May 2013 01:16:28 -0700 Subject: Mon May 13 01:16:27 PDT 2013 --- community/rng-tools/rngd | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100755 community/rng-tools/rngd (limited to 'community/rng-tools/rngd') diff --git a/community/rng-tools/rngd b/community/rng-tools/rngd deleted file mode 100755 index bd6b8d62f..000000000 --- a/community/rng-tools/rngd +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -rnd_device=/dev/random -rng_device=/dev/hw_random -timeout=0 - -[ -f /etc/conf.d/rngd ] && . /etc/conf.d/rngd -PID=$(pidof -o %PPID /usr/sbin/rngd) -case "$1" in - start) - stat_busy "Starting RNG" - [ -z "$PID" ] && /usr/sbin/rngd $RNGD_OPTS - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon rngd - stat_done - fi - ;; - stop) - stat_busy "Stopping RNG" - [ ! -z "$PID" ] && kill -s SIGALRM $PID &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon rngd - stat_done - fi - ;; - restart) - $0 stop - sleep 2 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac -exit 0 -- cgit v1.2.3-54-g00ecf