summaryrefslogtreecommitdiff
path: root/community/rng-tools/rngd
diff options
context:
space:
mode:
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