On Mon, Jun 13, 2022 at 3:00 PM Ihar Hrachyshka <[email protected]> wrote:
>
> Signed-off-by: Ihar Hrachyshka <[email protected]>
With this patch I also applied, I see the below error
/usr/share/ovn/scripts/ovn-ctl: line 53: test: syntax error: `-s' unexpected
I think it should be - test -s "$pidfile" && ....
Thanks
Numan
> ---
> utilities/ovn-ctl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/utilities/ovn-ctl b/utilities/ovn-ctl
> index 46cbac4c2..5d74b48ed 100755
> --- a/utilities/ovn-ctl
> +++ b/utilities/ovn-ctl
> @@ -43,7 +43,7 @@ ovn_ic_db_conf_file="$ovn_etcdir/ovn-ic-db-params.conf"
> pidfile_is_running () {
> pidfile=$1
> cmd=$2
> - test -e "$pidfile" && [ -s "$pidfile" ] && pid=`cat "$pidfile"` &&
> pid_exists "$pid" && [ -z "$cmd" -o pid_comm_check "$cmd" "$pid" ]
> + test [ -s "$pidfile" ] && pid=`cat "$pidfile"` && pid_exists "$pid" && [
> -z "$cmd" -o pid_comm_check "$cmd" "$pid" ]
> } >/dev/null 2>&1
>
> stop_nb_ovsdb() {
> --
> 2.34.1
>
> _______________________________________________
> dev mailing list
> [email protected]
> https://mail.openvswitch.org/mailman/listinfo/ovs-dev
>
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev