From ba98a8a0694151c65040b4dbdc059501072cbbcf Mon Sep 17 00:00:00 2001 From: markm Date: Wed, 8 Jul 2015 18:46:44 +0000 Subject: Address review. Differential Revision: https://reviews.freebsd.org/D2924 --- etc/rc.d/random | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'etc') diff --git a/etc/rc.d/random b/etc/rc.d/random index 13490a9..ddd37e1 100755 --- a/etc/rc.d/random +++ b/etc/rc.d/random @@ -67,7 +67,7 @@ random_start() esac case ${entropy_file:=/entropy} in - [Nn][Oo] | '') + [Nn][Oo]) ;; *) feed_dev_random "${entropy_file}" /var/db/entropy-file @@ -76,7 +76,7 @@ random_start() esac case ${entropy_boot_file:=/boot/entropy} in - [Nn][Oo] | '') + [Nn][Oo]) ;; *) save_dev_random "${entropy_boot_file}" @@ -92,7 +92,7 @@ random_stop() # can be reseeded # case ${entropy_file:=/entropy} in - [Nn][Oo] | '') + [Nn][Oo]) ;; *) echo -n 'Writing entropy file:' @@ -124,7 +124,7 @@ random_stop() ;; esac case ${entropy_boot_file:=/boot/entropy} in - [Nn][Oo] | '') + [Nn][Oo]) ;; *) echo -n 'Writing early boot entropy file:' -- cgit v1.1