summaryrefslogtreecommitdiffstats
path: root/satellit_installer/static_files/rclocal_script.sh
diff options
context:
space:
mode:
authorChristian Rößler2015-06-11 17:42:55 +0200
committerChristian Rößler2015-06-11 17:42:55 +0200
commit3c09d285edfb39a0a4f5cfe844e75124fb29b377 (patch)
treef84e17dce1e0e0d1e6dcb10a2b00f1847ec57ce3 /satellit_installer/static_files/rclocal_script.sh
parent[SSPS] Much better systemd detection (diff)
downloadsetup-scripts-3c09d285edfb39a0a4f5cfe844e75124fb29b377.tar.gz
setup-scripts-3c09d285edfb39a0a4f5cfe844e75124fb29b377.tar.xz
setup-scripts-3c09d285edfb39a0a4f5cfe844e75124fb29b377.zip
[SSPS] A tiny little bug (systemd / rc-local)
Diffstat (limited to 'satellit_installer/static_files/rclocal_script.sh')
-rw-r--r--satellit_installer/static_files/rclocal_script.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/satellit_installer/static_files/rclocal_script.sh b/satellit_installer/static_files/rclocal_script.sh
index aaba748..e37e8ca 100644
--- a/satellit_installer/static_files/rclocal_script.sh
+++ b/satellit_installer/static_files/rclocal_script.sh
@@ -31,15 +31,15 @@ patchfiles() {
done
}
-echo "Lösche alte ssh-Schlüssel ..." >> /root/init.log
+echo -n "Lösche alte ssh-Schlüssel ..." >> /root/init.log
rm -f /etc/ssh/ssh_host_*key* 2>/dev/null
-echo -n "... done."
+echo " done."
-echo "Generating new ssh keys..." >> /root/init.log
+echo -n "Generating new ssh keys..." >> /root/init.log
ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N "" -t rsa -q
ssh-keygen -f /etc/ssh/ssh_host_dsa_key -N "" -t dsa -q
ssh-keygen -f /etc/ssh/ssh_host_ecdsa_key -N "" -t ecdsa -q
-echo -n "... done." >> /root/init.log
+echo "... done." >> /root/init.log
export LANG=de_DE.UTF-8