From b431c62768e643e04525af100dc5f379ec171ae8 Mon Sep 17 00:00:00 2001 From: zeus Date: Mon, 21 Feb 2022 13:52:23 +0200 Subject: [PATCH] add rcloca --- .../usr/share/swarmlab.io/sec/sec_bootstrap | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/install/usr/share/swarmlab.io/sec/sec_bootstrap b/install/usr/share/swarmlab.io/sec/sec_bootstrap index 6b385c3..19375ac 100755 --- a/install/usr/share/swarmlab.io/sec/sec_bootstrap +++ b/install/usr/share/swarmlab.io/sec/sec_bootstrap @@ -50,7 +50,23 @@ case $ROLE in # Start ssh server ttyd -p 3787 bash & cd /opt/etherpad-lite - node src/node/server.js + node src/node/server.js & + + + +extrarclocal=/tmp/bin/rclocal +if [ -f $extrarclocal ]; then + if [ -s $extrarclocal ]; then + # The file is not-empty. + sh /tmp/bin/rclocal 2>&1 | tee /tmp/logs/rclocal.log + else + # The file is empty. + echo "file empty" + fi +fi + + + tail -f /dev/null #/usr/sbin/sshd -D ;;