openssh: fix tab/spacing in init script

Several of the lines in S50sshd script have a strange mix of spaces
and tabs, that at least do not look consistent with neighboring lines.
This patch makes the spacing consistent, and also strips the trailing
spaces.

Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Danomi Manchego 2013-08-20 21:11:00 -04:00 committed by Peter Korsgaard
parent 282456212f
commit 0be2fe9a8c

View File

@ -23,7 +23,7 @@ if [ ! -f /etc/ssh_host_dsa_key ] ; then
echo Generating DSA Key... echo Generating DSA Key...
echo THIS CAN TAKE A MINUTE OR TWO DEPENDING ON YOUR PROCESSOR! echo THIS CAN TAKE A MINUTE OR TWO DEPENDING ON YOUR PROCESSOR!
echo echo
/usr/bin/ssh-keygen -t dsa -f /etc/ssh_host_dsa_key -C '' -N '' /usr/bin/ssh-keygen -t dsa -f /etc/ssh_host_dsa_key -C '' -N ''
fi fi
# Check for the SSH2 ECDSA key # Check for the SSH2 ECDSA key
@ -33,35 +33,35 @@ if [ ! -f /etc/ssh_host_ecdsa_key ]; then
echo echo
/usr/bin/ssh-keygen -t ecdsa -f /etc/ssh_host_ecdsa_key -C '' -N '' /usr/bin/ssh-keygen -t ecdsa -f /etc/ssh_host_ecdsa_key -C '' -N ''
fi fi
umask 077 umask 077
start() { start() {
echo -n "Starting sshd: " echo -n "Starting sshd: "
/usr/sbin/sshd /usr/sbin/sshd
touch /var/lock/sshd touch /var/lock/sshd
echo "OK" echo "OK"
} }
stop() { stop() {
echo -n "Stopping sshd: " echo -n "Stopping sshd: "
killall sshd killall sshd
rm -f /var/lock/sshd rm -f /var/lock/sshd
echo "OK" echo "OK"
} }
restart() { restart() {
stop stop
start start
} }
case "$1" in case "$1" in
start) start)
start start
;; ;;
stop) stop)
stop stop
;; ;;
restart|reload) restart|reload)
restart restart
;; ;;
*) *)
echo "Usage: $0 {start|stop|restart}" echo "Usage: $0 {start|stop|restart}"