Skip to content
Snippets Groups Projects
Commit 6eabab2f authored by Jacob Vosmaer's avatar Jacob Vosmaer
Browse files

Fix workhorse-stunnel: -ne is for numbers, want !=

parent 8b0296c4
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -11,7 +11,7 @@ cert = $3
EOF
}
 
if [ x$# -ne x3 ] ; then
if [ x$# != x3 ] ; then
echo "Usage: $0 LISTEN_ADDRESS WORKHORSE_SOCKET CERTIFICATE"
exit 1
fi
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment