Browse Source

Remove unecessary line continuation markers after || and &&

OPENBSD_6_3
rpe 6 years ago
parent
commit
88be1e7ada
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/etc/rc

+ 3
- 3
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.524 2018/02/10 05:56:47 florian Exp $
# $OpenBSD: rc,v 1.525 2018/02/18 18:52:02 rpe Exp $
# System startup script run by init on autoboot or after single-user.
# Output and error are redirected to console by init, and the console is the
@ -160,7 +160,7 @@ make_keys() {
ssh-keygen -A
if [[ ! -f /etc/soii.key ]]; then
openssl rand -hex 16 > /etc/soii.key && \
openssl rand -hex 16 > /etc/soii.key &&
chmod 600 /etc/soii.key && sysctl -q \
"net.inet6.ip6.soiikey=$(</etc/soii.key)"
fi
@ -315,7 +315,7 @@ _rc_parse_conf
# - execute the rc.d scripts specified by $pkg_scripts in reverse order
# - bring carp interfaces down gracefully
if [[ $1 == shutdown ]]; then
if echo 2>/dev/null >>/var/db/host.random || \
if echo 2>/dev/null >>/var/db/host.random ||
echo 2>/dev/null >>/etc/random.seed; then
random_seed
else


Loading…
Cancel
Save