diff options
author | 2008-05-31 07:06:15 +0000 | |
---|---|---|
committer | 2008-05-31 07:06:15 +0000 | |
commit | 33acec06658785eff22c0ea2be4a5aa4570db297 (patch) | |
tree | 6e94dab1cd83441742d1a7d2eb1ea34069495893 /sys-apps/openrc | |
parent | Do the timezone upgrade before moving the clock conf.d as pointed out by Hope... (diff) | |
download | gentoo-2-33acec06658785eff22c0ea2be4a5aa4570db297.tar.gz gentoo-2-33acec06658785eff22c0ea2be4a5aa4570db297.tar.bz2 gentoo-2-33acec06658785eff22c0ea2be4a5aa4570db297.zip |
add the net.lo check from older versions
(Portage version: 2.2_pre5.spank.spunk)
Diffstat (limited to 'sys-apps/openrc')
-rw-r--r-- | sys-apps/openrc/openrc-9999.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys-apps/openrc/openrc-9999.ebuild b/sys-apps/openrc/openrc-9999.ebuild index ff4c8fee760e..fd3a8413ee93 100644 --- a/sys-apps/openrc/openrc-9999.ebuild +++ b/sys-apps/openrc/openrc-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v 1.34 2008/05/31 07:04:58 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v 1.35 2008/05/31 07:06:15 vapier Exp $ inherit eutils flag-o-matic multilib toolchain-funcs @@ -160,6 +160,7 @@ pkg_preinst() { # force net init.d scripts into symlinks for f in "${ROOT}"/etc/init.d/net.* ; do [[ -e ${f} ]] || continue # catch net.* not matching anything + [[ ${f} == *.net.lo ]] && continue # real file now [[ ${f} == *.openrc.bak ]] && continue if [[ ! -L ${f} ]] ; then elog "Moved net service '${f##*/}' to '${f##*/}.openrc.bak' to force a symlink." |