From ce461490c3a3450ca875cd21cccc35f9e714b592 Mon Sep 17 00:00:00 2001 From: Alexander Lutay Date: Wed, 9 Nov 2016 11:26:09 +0100 Subject: [PATCH] TT#5748 Fix typo in debian/ngcp-rtpengine-daemon.init Otherwise we have the following error: > root@spce:~# /etc/init.d/ngcp-rtpengine-daemon status > /etc/init.d/ngcp-rtpengine-daemon: 98: /etc/init.d/ngcp-rtpengine-daemon: Syntax error: "(" unexpected Change-Id: I85a5f8466733f42c78cdc125ba6d30d3f31e44a2 --- debian/ngcp-rtpengine-daemon.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/ngcp-rtpengine-daemon.init b/debian/ngcp-rtpengine-daemon.init index bccdbc9b4..759c6193a 100755 --- a/debian/ngcp-rtpengine-daemon.init +++ b/debian/ngcp-rtpengine-daemon.init @@ -95,7 +95,7 @@ OPTIONS="$OPTIONS --table=$TABLE" [ -z "$HOMER_PROTOCOL" ] || OPTIONS="$OPTIONS --homer-protocol=$HOMER_PROTOCOL" [ -z "$HOMER_ID" ] || OPTIONS="$OPTIONS --homer-id=$HOMER_ID" [ -z "$RECORDING_DIR" ] || OPTIONS="$OPTIONS --recording-dir=$RECORDING_DIR" -[ -z "$DTLS_PASSIVE" -o \("$DTLS_PASSIVE" != "yes" -a "$DTLS_PASSIVE" != "1" \) ] || OPTIONS="$OPTIONS --dtls-passive" +[ -z "$DTLS_PASSIVE" -o \( "$DTLS_PASSIVE" != "yes" -a "$DTLS_PASSIVE" != "1" \) ] || OPTIONS="$OPTIONS --dtls-passive" if test "$FORK" = "no" ; then OPTIONS="$OPTIONS --foreground"