diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2011-04-21 13:02:49 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2011-04-21 13:02:49 -0500 |
commit | 8202e7dce4065b79c272dc11941b371a9c4f99fc (patch) | |
tree | 940b5ccc5baaa2f159b034b3b9d4fac5256245bb /init.d/local.in | |
parent | 2d197357ef9b92c6a237b438723c2969b51a802d (diff) |
add back the eend command in start/stop for local service
This was added back due to a user request. It will always be on a line
of its ownbecause I'm considering adding more verbose info messages to
local that show when each service is run if local is run with the -v
option.
X-Gentoo-Bug: 363343
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=363343
Diffstat (limited to 'init.d/local.in')
-rw-r--r-- | init.d/local.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init.d/local.in b/init.d/local.in index 4db492ed..17a4c86a 100644 --- a/init.d/local.in +++ b/init.d/local.in @@ -27,7 +27,7 @@ start() local_start fi - return 0 + eend 0 } stop() @@ -47,5 +47,5 @@ stop() local_stop fi - return 0 + eend 0 } |