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.
This commit is contained in:
parent
39776d6fb7
commit
2fa6bb0d48
@ -20,6 +20,9 @@ start()
|
|||||||
|
|
||||||
# Support old configs
|
# Support old configs
|
||||||
if [ -e @SYSCONFDIR@/conf.d/local.start ]; then
|
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
|
. @SYSCONFDIR@/conf.d/local.start
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -36,6 +39,9 @@ stop()
|
|||||||
|
|
||||||
# Support old configs
|
# Support old configs
|
||||||
if [ -e @SYSCONFDIR@/conf.d/local.stop ]; then
|
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
|
. @SYSCONFDIR@/conf.d/local.stop
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user