From 3bf49a9bd19d5bbcf6976dd42b4f87f1b173e287 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Fri, 11 Jan 2008 12:13:46 +0000 Subject: Adopt a more C style for scripts and remove vim settings. --- init.d/local | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'init.d/local') diff --git a/init.d/local b/init.d/local index b706be65..bf8692a5 100755 --- a/init.d/local +++ b/init.d/local @@ -4,12 +4,14 @@ description="Executes user commands in /etc/conf.d/local" -depend() { +depend() +{ after * keywords notimeout } -start() { +start() +{ ebegin "Starting local" if type local_start >/dev/null 2>&1; then @@ -24,7 +26,8 @@ start() { eend $? "Failed to start local" } -stop() { +stop() +{ ebegin "Stopping local" if type local_start >/dev/null 2>&1; then @@ -38,5 +41,3 @@ stop() { eend $? $"Failed to stop local" } - -# vim: set ts=4 : -- cgit v1.2.3