summaryrefslogtreecommitdiff
path: root/community/rng-tools/rngd
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-05-13 01:16:28 -0700
committerroot <root@rshg054.dnsready.net>2013-05-13 01:16:28 -0700
commit66cb4a487ad73063c6b000279a5d5558fb7603f5 (patch)
treeee73bbc414ba8aec6b9a578578ceaabd38fff01e /community/rng-tools/rngd
parent5b9e0d821dd428792bd51ed03af2b800924ce69d (diff)
Mon May 13 01:16:27 PDT 2013
Diffstat (limited to 'community/rng-tools/rngd')
-rwxr-xr-xcommunity/rng-tools/rngd41
1 files changed, 0 insertions, 41 deletions
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