From e7b438dc3014c42aa5a0b4436ec4a67790f06d39 Mon Sep 17 00:00:00 2001 From: Gurucharan Shetty Date: Tue, 15 Dec 2015 08:27:15 -0800 Subject: [PATCH] ovn-ctl: Add daemon status functions. Signed-off-by: Gurucharan Shetty Acked-by: Russell Bryant Acked-by: Ben Pfaff --- ovn/utilities/ovn-ctl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ovn/utilities/ovn-ctl b/ovn/utilities/ovn-ctl index 3e2ccf9a6..b17193486 100755 --- a/ovn/utilities/ovn-ctl +++ b/ovn/utilities/ovn-ctl @@ -225,6 +225,12 @@ case $command in restart_controller) restart_controller ;; + status_northd) + daemon_status ovn-northd || exit 1 + ;; + status_controller) + daemon_status ovn-controller || exit 1 + ;; help) usage ;; -- 2.20.1