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.
This commit is contained in:
Anthony Cozamanis
2016-01-18 09:26:48 +08:00
parent 53742246a3
commit fb7df2632c

View File

@@ -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