summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJagadeesh Krishnanjanappa <jkrishnanjanappa@mvista.com>2018-07-07 22:32:37 +0530
committerBruce Ashfield <bruce.ashfield@windriver.com>2018-07-10 09:52:47 -0400
commit9aa6b5dcbacf734a93602515f0b1857b91c1d408 (patch)
tree569941cc8580147c302d4c19a7d9e74f4f1be1e1
parent62f3fed67f8cf07de5e342f57e4faf911f001c12 (diff)
downloadmeta-cloud-services-sumo.tar.gz
tgt: Use return instead of exit to restart tgtd, if tgtd is not runningsumorocko
If the tgtd daemon is stopped, then '/etc/init.d/tgtd.init restart' does not start the new tgtd daemon, as the control comes out from the stop function, if it finds tgtd is not running. Signed-off-by: Jagadeesh Krishnanjanappa <jkrishnanjanappa@mvista.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--meta-openstack/recipes-support/tgt/files/tgtd.init4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-openstack/recipes-support/tgt/files/tgtd.init b/meta-openstack/recipes-support/tgt/files/tgtd.init
index 52d98c3..5937ff0 100644
--- a/meta-openstack/recipes-support/tgt/files/tgtd.init
+++ b/meta-openstack/recipes-support/tgt/files/tgtd.init
@@ -57,11 +57,11 @@ stop ()
57 RETVAL=$? 57 RETVAL=$?
58 if [ "$RETVAL" -eq 107 ] ; then 58 if [ "$RETVAL" -eq 107 ] ; then
59 if [ "$TASK" != "restart" ] ; then 59 if [ "$TASK" != "restart" ] ; then
60 exit 1 60 return 1
61 fi 61 fi
62 elif [ "$RETVAL" -ne 0 ] ; then 62 elif [ "$RETVAL" -ne 0 ] ; then
63 echo "Some initiators are still connected - could not stop tgtd" 63 echo "Some initiators are still connected - could not stop tgtd"
64 exit 2 64 return 2
65 fi 65 fi
66 echo -n 66 echo -n
67} 67}