summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2010-11-10 10:55:28 -0600
committerWilliam Hubbs <williamh@gentoo.org>2010-11-10 10:55:28 -0600
commit6d9137d6c4a83f7a4a0c156895b443bfd6c050c4 (patch)
treed1e38d32adb15f54900007b861d338ce871bbd39
parent2fa6bb0d48d44584043fe6a95e94bdbf06b6677d (diff)
downloadopenrc-6d9137d6c4a83f7a4a0c156895b443bfd6c050c4.tar.gz
openrc-6d9137d6c4a83f7a4a0c156895b443bfd6c050c4.tar.bz2
openrc-6d9137d6c4a83f7a4a0c156895b443bfd6c050c4.tar.xz
remove support for local.start and local.stop for bug #343709
The openrc ebuild now migrates these files to /etc/conf.d/local, so we do not need to support them.
-rw-r--r--init.d/local.in16
1 files changed, 0 insertions, 16 deletions
diff --git a/init.d/local.in b/init.d/local.in
index 16b4d9b..63d5e92 100644
--- a/init.d/local.in
+++ b/init.d/local.in
@@ -18,14 +18,6 @@ start()
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"
}
@@ -37,13 +29,5 @@ stop()
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"
}