b4104957b1
This matches the ifconfig and Gentoo USE flag syntax and is hopefully easier to read. Fixes #178.
44 lines
736 B
Plaintext
44 lines
736 B
Plaintext
#!@PREFIX@/sbin/runscript
|
|
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
|
|
|
description="Executes user commands in /etc/conf.d/local"
|
|
|
|
depend()
|
|
{
|
|
after *
|
|
keyword -timeout
|
|
}
|
|
|
|
start()
|
|
{
|
|
ebegin "Starting local"
|
|
|
|
if type local_start >/dev/null 2>&1; then
|
|
local_start
|
|
fi
|
|
|
|
# Support old configs
|
|
if [ -e @SYSCONFDIR@/conf.d/local.start ]; then
|
|
. @SYSCONFDIR@/conf.d/local.start
|
|
fi
|
|
|
|
eend $? "Failed to start local"
|
|
}
|
|
|
|
stop()
|
|
{
|
|
ebegin "Stopping local"
|
|
|
|
if type local_start >/dev/null 2>&1; then
|
|
local_stop
|
|
fi
|
|
|
|
# Support old configs
|
|
if [ -e @SYSCONFDIR@/conf.d/local.stop ]; then
|
|
. @SYSCONFDIR@/conf.d/local.stop
|
|
fi
|
|
|
|
eend $? "Failed to stop local"
|
|
}
|