diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-01-09 05:49:32 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-01-09 05:49:32 +0000 |
commit | 1d527ed39eab77c04d80199d0ba138606586670d (patch) | |
tree | c9845e6eb5979fd955484a88518d4191def458ee | |
parent | 07504ac72f4717bd46c90aca42b7360d947d312e (diff) |
sys-apps/openrc : revision bump
-rw-r--r-- | sys-apps/openrc/openrc-0.34.11-r3.ebuild (renamed from sys-apps/openrc/openrc-0.34.11-r2.ebuild) | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/sys-apps/openrc/openrc-0.34.11-r2.ebuild b/sys-apps/openrc/openrc-0.34.11-r3.ebuild index 092d9944..beb95a52 100644 --- a/sys-apps/openrc/openrc-0.34.11-r2.ebuild +++ b/sys-apps/openrc/openrc-0.34.11-r3.ebuild @@ -318,17 +318,6 @@ pkg_postinst() { # update the dependency tree after touching all files #224171 [[ "${EROOT}" = "/" ]] && "${EROOT}/${LIBDIR}"/rc/bin/rc-depend -u - if ! use newnet && ! use netifrc; then - ewarn "You have emerged OpenRc without network support. This" - ewarn "means you need to SET UP a network manager such as" - ewarn " net-misc/netifrc, net-misc/dhcpcd, net-misc/wicd," - ewarn "net-misc/NetworkManager, or net-vpn/badvpn." - ewarn "Or, you have the option of emerging openrc with the newnet" - ewarn "use flag and configuring /etc/conf.d/network and" - ewarn "/etc/conf.d/staticroute if you only use static interfaces." - ewarn - fi - if use newnet && [ ! -e "${EROOT}"etc/runlevels/boot/network ]; then ewarn "Please add the network service to your boot runlevel" ewarn "as soon as possible. Not doing so could leave you with a system" @@ -341,20 +330,24 @@ pkg_postinst() { #1 : move dbus service to boot runlevel if [ -e "${ROOT}"etc/init.d/dbus ]; then if [ "$(rc-config list boot | grep dbus)" != "" ]; then - ewarn "dbus is currently started from boot runlevel, skiping" + ewarn "found dbus service in boot runlevel, skiping" + ewarn elif [ "$(rc-config list default | grep dbus)" != "" ]; then - ewarn "dbus is currently started from default runlevel, moving" + ewarn "found dbus service in default runlevel, moving" + ewarn "${ROOT}"sbin/rc-update del dbus default - "${ROOT}"sbin/rc-update del dbus boot + "${ROOT}"sbin/rc-update add dbus boot fi fi #2 : add dkms service to boot runlevel if [ -e "${ROOT}"etc/init.d/dkms ] && use dkms; then if [ "$(rc-config list boot | grep dkms)" != "" ]; then - ewarn "dkms is currently started from boot runlevel, skiping" + ewarn "found dkms service in boot runlevel, skiping" + ewarn else - ewarn "dkms is currently not started from boot runlevel, enabling" + ewarn "not found dkms service in boot runlevel, enabling" + ewarn "${ROOT}"sbin/rc-update add dkms boot fi fi |