From a6f3f560da6f6613896de9c30679bc6dd37f3990 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 28 Feb 2012 16:31:45 -0800 Subject: [PATCH] debian: Fix exit status of openvswitch-switch init script "status" command. The init script ends with an explicit "exit 0" so nonzero exit codes from "ovs-ctl status" were being lost. Bug #9714. Reported-by: Paul Ingram CC: Sujatha Shetty Signed-off-by: Ben Pfaff --- debian/openvswitch-switch.init | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/openvswitch-switch.init b/debian/openvswitch-switch.init index 3d187a056..13d12c3be 100755 --- a/debian/openvswitch-switch.init +++ b/debian/openvswitch-switch.init @@ -1,6 +1,6 @@ #! /bin/sh # -# Copyright (C) 2011 Nicira Networks, Inc. +# Copyright (C) 2011, 2012 Nicira Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -86,6 +86,7 @@ case $1 in ;; status) ovs_ctl status + exit $? ;; force-reload-kmod) start force-reload-kmod -- 2.43.0