summaryrefslogtreecommitdiffstats
path: root/package/openssh
diff options
context:
space:
mode:
authorDanomi Manchego <danomimanchego123@gmail.com>2013-08-20 21:11:00 -0400
committerPeter Korsgaard <jacmet@sunsite.dk>2013-08-27 22:34:47 +0200
commit0be2fe9a8c07d1f58ca9eb288cb75aaae40550cd (patch)
tree0e96a733f9808e65a501dbe054f81b5d92447313 /package/openssh
parent282456212f2b3d232653844eebdd7c6e3be27506 (diff)
downloadbuildroot-0be2fe9a8c07d1f58ca9eb288cb75aaae40550cd.tar.gz
buildroot-0be2fe9a8c07d1f58ca9eb288cb75aaae40550cd.zip
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>
Diffstat (limited to 'package/openssh')
-rw-r--r--package/openssh/S50sshd20
1 files changed, 10 insertions, 10 deletions
diff --git a/package/openssh/S50sshd b/package/openssh/S50sshd
index 89f1b9a8d1..b65b3c8a70 100644
--- a/package/openssh/S50sshd
+++ b/package/openssh/S50sshd
@@ -23,7 +23,7 @@ if [ ! -f /etc/ssh_host_dsa_key ] ; then
echo Generating DSA Key...
echo THIS CAN TAKE A MINUTE OR TWO DEPENDING ON YOUR PROCESSOR!
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
# Check for the SSH2 ECDSA key
@@ -33,35 +33,35 @@ if [ ! -f /etc/ssh_host_ecdsa_key ]; then
echo
/usr/bin/ssh-keygen -t ecdsa -f /etc/ssh_host_ecdsa_key -C '' -N ''
fi
-
+
umask 077
start() {
- echo -n "Starting sshd: "
+ echo -n "Starting sshd: "
/usr/sbin/sshd
touch /var/lock/sshd
echo "OK"
-}
+}
stop() {
echo -n "Stopping sshd: "
- killall sshd
+ killall sshd
rm -f /var/lock/sshd
- echo "OK"
+ echo "OK"
}
restart() {
stop
start
-}
+}
case "$1" in
start)
- start
+ start
;;
stop)
- stop
+ stop
;;
restart|reload)
- restart
+ restart
;;
*)
echo "Usage: $0 {start|stop|restart}"
OpenPOWER on IntegriCloud