From fb7df2632c29409e9b46697108bee7481a1df313 Mon Sep 17 00:00:00 2001 From: Anthony Cozamanis Date: Mon, 18 Jan 2016 09:26:48 +0800 Subject: [PATCH] Update start.sh Very small change, POSIX sh doesn't understand == for string equality, bash does, but I'm assuming you went with sh for a reason. I updated it to use = instead. --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index f439499..e6f6657 100755 --- a/start.sh +++ b/start.sh @@ -26,7 +26,7 @@ then fi echo "Starting cowrie in the background..." -if [ $AUTHBIND_ENABLED == "no" ] +if [ $AUTHBIND_ENABLED = "no" ] then twistd -l log/cowrie.log --pidfile cowrie.pid cowrie else