openrc/init.d/local.in
William Hubbs 2fa6bb0d48 add warnings about local.start and local.stop for bug #343709
We need to warn users that they should be using /etc/conf.d/local
instead of /etc/conf.d/local.start and /etc/conf.d/local.stop. This adds
those warnings.
2010-11-05 13:42:33 -05:00

50 lines
1.1 KiB
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
ewarn @SYSCONFDIR@/conf.d/local.start is depricated. Please migrate
ewarn the contents of this file to the local_start
ewarn function in @SYSCONFDIR@/conf.d/local and remove the file.
. @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
ewarn @SYSCONFDIR@/conf.d/local.stop is depricated. Please migrate
ewarn the contents of this file to the local_stop
ewarn function in @SYSCONFDIR@/conf.d/local and remove the file.
. @SYSCONFDIR@/conf.d/local.stop
fi
eend $? "Failed to stop local"
}