Remove excess spaces from rc.d scripts
The space between words is already being echoed by the space between quoted strings: % echo 'foo' 'bar' foo bar % echo 'foo' ' baz' foo baz Found in `ipfw` and `mountlate` messages. PR: 247948 Submitted by: Jose Luis Duran <jlduran@gmail.com> MFC after: 2 weeks Sponsored by: Klara Inc.
This commit is contained in:
parent
b2776a1809
commit
fb6b5cd016
@ -63,7 +63,7 @@ ipfw_start()
|
|||||||
echo 'Firewall rules loaded.'
|
echo 'Firewall rules loaded.'
|
||||||
elif [ "`ipfw list 65535`" = "65535 deny ip from any to any" ]; then
|
elif [ "`ipfw list 65535`" = "65535 deny ip from any to any" ]; then
|
||||||
echo 'Warning: kernel has firewall functionality, but' \
|
echo 'Warning: kernel has firewall functionality, but' \
|
||||||
' firewall rules are not enabled.'
|
'firewall rules are not enabled.'
|
||||||
echo ' All ip services are disabled.'
|
echo ' All ip services are disabled.'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ mountlate_start()
|
|||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo 'Mounting /etc/fstab filesystems failed,' \
|
echo 'Mounting /etc/fstab filesystems failed,' \
|
||||||
' startup aborted'
|
'startup aborted'
|
||||||
stop_boot true
|
stop_boot true
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
Loading…
x
Reference in New Issue
Block a user