diff options
author | Nathan Kinder <nkinder@redhat.com> | 2009-04-02 15:19:47 +0000 |
---|---|---|
committer | Nathan Kinder <nkinder@redhat.com> | 2009-04-02 15:19:47 +0000 |
commit | 2e31d017f1c1acb90c00ae51e009836d3509677a (patch) | |
tree | 32bae2fe78ef94a4d06e26946473e2f4c8c5e144 /wrappers/initscript.in | |
parent | dae349b7ede0239668fc05899c5f98bfc32b0c62 (diff) | |
download | ds-2e31d017f1c1acb90c00ae51e009836d3509677a.tar.gz ds-2e31d017f1c1acb90c00ae51e009836d3509677a.tar.xz ds-2e31d017f1c1acb90c00ae51e009836d3509677a.zip |
Resolves: 442474
Summary: Ensure we exit with the return code for the status command in the init script.
Diffstat (limited to 'wrappers/initscript.in')
-rw-r--r-- | wrappers/initscript.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wrappers/initscript.in b/wrappers/initscript.in index 9223ebac..9a7835c0 100644 --- a/wrappers/initscript.in +++ b/wrappers/initscript.in @@ -312,6 +312,7 @@ status() { ret=3 fi done + exit $ret } |