summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2010-11-05 13:42:33 -0500
committerWilliam Hubbs <williamh@gentoo.org>2010-11-05 13:42:33 -0500
commit2fa6bb0d48d44584043fe6a95e94bdbf06b6677d (patch)
treecfe0446300614183de6d6715c1fead76c601d417
parent39776d6fb72468fd3b2c11fc411894341a2db8aa (diff)
downloadopenrc-2fa6bb0d48d44584043fe6a95e94bdbf06b6677d.tar.gz
openrc-2fa6bb0d48d44584043fe6a95e94bdbf06b6677d.tar.bz2
openrc-2fa6bb0d48d44584043fe6a95e94bdbf06b6677d.tar.xz
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.
-rw-r--r--init.d/local.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/init.d/local.in b/init.d/local.in
index 9ad045b..16b4d9b 100644
--- a/init.d/local.in
+++ b/init.d/local.in
@@ -20,6 +20,9 @@ start()
# 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
@@ -36,6 +39,9 @@ stop()
# 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