mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-17 12:20:59 +02:00
networkmanager live: for the bold
This commit is contained in:
parent
9a82cd470c
commit
b365c22f0e
6 changed files with 487 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
// Let users in plugdev group modify NetworkManager
|
||||
polkit.addRule(function(action, subject) {
|
||||
if (action.id == "org.freedesktop.NetworkManager.settings.modify.system" &&
|
||||
subject.isInGroup("plugdev") && subject.active) {
|
||||
return "yes";
|
||||
}
|
||||
});
|
||||
35
net-misc/networkmanager/files/10-openrc-status-r4
Normal file
35
net-misc/networkmanager/files/10-openrc-status-r4
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
#!/bin/sh
|
||||
# Copyright (c) 2012 Alexandre Rostovtsev
|
||||
# Released under the 2-clause BSD license.
|
||||
|
||||
# Ensures that the NetworkManager OpenRC service is marked as started and
|
||||
# providing net only when it has a successful connection.
|
||||
|
||||
if [ ! -e "/run/openrc/softlevel" ]; then
|
||||
# OpenRC is not running
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Ensure rc-service is in PATH
|
||||
PATH="${PATH}:@EPREFIX@/sbin:@EPREFIX@/usr/sbin"
|
||||
|
||||
# Exit if the NetworkManager OpenRC service is not running
|
||||
rc-service NetworkManager status 2>&1 | grep -Eq "status: (starting|started|inactive|stopping)" || exit 0
|
||||
|
||||
# Call rc-service in background mode so that the start/stop functions update
|
||||
# NetworkManager service status to started or inactive instead of actually
|
||||
# starting or stopping the daemon
|
||||
export IN_BACKGROUND=YES
|
||||
|
||||
case "$2" in
|
||||
up) nm-online -t 0 -x &&
|
||||
! rc-service NetworkManager status 2>&1 | grep -q started &&
|
||||
exec rc-service NetworkManager start ;;
|
||||
down) nm-online -t 0 -x ||
|
||||
rc-service NetworkManager status 2>&1 | grep -q stopped ||
|
||||
exec rc-service NetworkManager stop ;;
|
||||
pre-sleep) rc-service NetworkManager status 2>&1 | grep -q stopped ||
|
||||
exec rc-service NetworkManager stop ;;
|
||||
esac
|
||||
exit 0
|
||||
# vim: set ts=4:
|
||||
4
net-misc/networkmanager/files/conf.d.NetworkManager
Normal file
4
net-misc/networkmanager/files/conf.d.NetworkManager
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# If NetworkManager does not establish a connection within $INACTIVE_TIMEOUT
|
||||
# seconds after starting, the service will be marked as inactive, and it will
|
||||
# continue to wait for a connection in background mode.
|
||||
INACTIVE_TIMEOUT=1
|
||||
58
net-misc/networkmanager/files/init.d.NetworkManager-r1
Normal file
58
net-misc/networkmanager/files/init.d.NetworkManager-r1
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
#!/sbin/openrc-run
|
||||
# Copyright (c) 2008 Saleem Abdulrasool <compnerd@compnerd.org>
|
||||
# Copyright 2013-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
description="NetworkManager daemon. The service is marked as started only \
|
||||
when a network connection is established."
|
||||
|
||||
depend() {
|
||||
need dbus
|
||||
use consolekit
|
||||
provide net
|
||||
}
|
||||
|
||||
start() {
|
||||
# If we are re-called by a dispatcher event, we want to mark the service
|
||||
# as started without starting the daemon again
|
||||
yesno "${IN_BACKGROUND}" && return 0
|
||||
|
||||
[ -z "${INACTIVE_TIMEOUT}" ] && INACTIVE_TIMEOUT="1"
|
||||
|
||||
ebegin "Starting NetworkManager"
|
||||
start-stop-daemon --start --quiet --pidfile /run/NetworkManager/NetworkManager.pid \
|
||||
--exec /usr/sbin/NetworkManager -- --pid-file /run/NetworkManager/NetworkManager.pid
|
||||
local _retval=$?
|
||||
eend "${_retval}"
|
||||
if [ "x${_retval}" = 'x0' ] && ! nm-online -t "${INACTIVE_TIMEOUT}"; then
|
||||
einfo "Marking NetworkManager as inactive. It will automatically be marked"
|
||||
einfo "as started after a network connection has been established."
|
||||
mark_service_inactive
|
||||
fi
|
||||
return "${_retval}"
|
||||
}
|
||||
|
||||
stop() {
|
||||
# If we are re-called by a dispatcher event, we want to mark the service
|
||||
# as inactive without stopping the daemon
|
||||
if yesno "${IN_BACKGROUND}"; then
|
||||
mark_service_inactive "${SVCNAME}"
|
||||
return 0
|
||||
fi
|
||||
|
||||
ebegin "Stopping NetworkManager"
|
||||
local pidfile=/run/NetworkManager/NetworkManager.pid
|
||||
if [ ! -e "${pidfile}" ] && [ -e /var/run/NetworkManager.pid ]; then
|
||||
# Try stopping the pid file used by <0.9.7
|
||||
pidfile=/var/run/NetworkManager.pid
|
||||
start-stop-daemon --stop --quiet --pidfile "${pidfile}"
|
||||
ret=$?
|
||||
[ ${ret} = 0 ] && [ -e "${pidfile}" ] && rm "${pidfile}"
|
||||
eend ${ret}
|
||||
else
|
||||
start-stop-daemon --stop --quiet --pidfile "${pidfile}"
|
||||
eend $?
|
||||
fi
|
||||
}
|
||||
|
||||
# vim: set ft=gentoo-init-d ts=4 :
|
||||
39
net-misc/networkmanager/metadata.xml
Normal file
39
net-misc/networkmanager/metadata.xml
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>gnome@gentoo.org</email>
|
||||
<name>Gentoo GNOME Desktop</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="connection-sharing">Use <pkg>net-dns/dnsmasq</pkg> and
|
||||
<pkg>net-firewall/iptables</pkg> for connection sharing</flag>
|
||||
<flag name="consolekit">Use <pkg>sys-auth/consolekit</pkg> for session
|
||||
tracking</flag>
|
||||
<flag name="dhclient">Use dhclient from <pkg>net-misc/dhcp</pkg> for
|
||||
getting ip</flag>
|
||||
<flag name="dhcpcd">Use <pkg>net-misc/dhcpcd</pkg> for getting ip</flag>
|
||||
<flag name="elogind">Use <pkg>sys-auth/elogind</pkg> for session tracking</flag>
|
||||
<flag name="iwd">Use <pkg>net-wireless/iwd</pkg> instead of
|
||||
<pkg>net-wireless/wpa_supplicant</pkg> for wifi support by default</flag>
|
||||
<flag name="json">Enable JSON validation via <pkg>dev-libs/jansson</pkg>
|
||||
in libnm.</flag>
|
||||
<flag name="modemmanager">Enable support for mobile broadband devices
|
||||
using <pkg>net-misc/modemmanager</pkg></flag>
|
||||
<flag name="nss">Use <pkg>dev-libs/nss</pkg> for cryptography</flag>
|
||||
<flag name="ofono">Use <pkg>net-misc/ofono</pkg> for telephony support.</flag>
|
||||
<flag name="ovs">Enable OpenVSwitch support</flag>
|
||||
<flag name="ppp">Enable support for mobile broadband and PPPoE
|
||||
connections using <pkg>net-dialup/ppp</pkg></flag>
|
||||
<flag name="resolvconf">Use <pkg>net-dns/openresolv</pkg> for managing
|
||||
DNS information in /etc/resolv.conf. Generally, a symlink to
|
||||
/run/NetworkManager/resolv.conf is simpler. On systems running
|
||||
systemd-resolved, disable this flag and create a symlink to
|
||||
/run/systemd/resolve/stub-resolv.conf.</flag>
|
||||
<flag name="teamd">Enable Teamd control support</flag>
|
||||
<flag name="wifi">Enable support for wifi and 802.1x security</flag>
|
||||
<flag name="wext">Enable support for the deprecated Wext (Wireless
|
||||
Extensions) API; needed for some older drivers (e.g. ipw2200,
|
||||
ndiswrapper)</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
344
net-misc/networkmanager/networkmanager-9999.ebuild
Normal file
344
net-misc/networkmanager/networkmanager-9999.ebuild
Normal file
|
|
@ -0,0 +1,344 @@
|
|||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
GNOME_ORG_MODULE="NetworkManager"
|
||||
GNOME2_LA_PUNT="yes"
|
||||
VALA_USE_DEPEND="vapigen"
|
||||
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
|
||||
|
||||
inherit autotools bash-completion-r1 gnome2 linux-info multilib python-any-r1 systemd \
|
||||
user readme.gentoo-r1 vala virtualx udev multilib-minimal
|
||||
|
||||
DESCRIPTION="A set of co-operative tools that make networking simple and straightforward"
|
||||
HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
|
||||
inherit git-r3
|
||||
SRC_URI=""
|
||||
EGIT_REPO_URI="https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git"
|
||||
S="${WORKDIR}/${P}"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0" # add subslot if libnm-util.so.2 or libnm-glib.so.4 bumps soname version
|
||||
|
||||
IUSE="audit bluetooth connection-sharing consolekit +dhclient dhcpcd elogind gnutls +introspection iwd json kernel_linux +nss +modemmanager ncurses ofono ovs policykit +ppp resolvconf selinux systemd teamd test vala +wext +wifi"
|
||||
|
||||
REQUIRED_USE="
|
||||
iwd? ( wifi )
|
||||
modemmanager? ( ppp )
|
||||
vala? ( introspection )
|
||||
wext? ( wifi )
|
||||
^^ ( nss gnutls )
|
||||
?? ( consolekit elogind systemd )
|
||||
"
|
||||
|
||||
# gobject-introspection-0.10.3 is needed due to gnome bug 642300
|
||||
# wpa_supplicant-0.7.3-r3 is needed due to bug 359271
|
||||
COMMON_DEPEND="
|
||||
>=sys-apps/dbus-1.2[${MULTILIB_USEDEP}]
|
||||
>=dev-libs/dbus-glib-0.100[${MULTILIB_USEDEP}]
|
||||
>=dev-libs/glib-2.40:2[${MULTILIB_USEDEP}]
|
||||
dev-libs/nspr
|
||||
policykit? ( >=sys-auth/polkit-0.106 )
|
||||
net-libs/libndp[${MULTILIB_USEDEP}]
|
||||
>=net-misc/curl-7.24
|
||||
net-misc/iputils
|
||||
sys-apps/util-linux[${MULTILIB_USEDEP}]
|
||||
sys-libs/readline:0=
|
||||
>=virtual/libudev-175:=[${MULTILIB_USEDEP}]
|
||||
audit? ( sys-process/audit )
|
||||
bluetooth? ( >=net-wireless/bluez-5 )
|
||||
connection-sharing? (
|
||||
net-dns/dnsmasq[dbus,dhcp]
|
||||
net-firewall/iptables )
|
||||
consolekit? ( >=sys-auth/consolekit-1.0.0 )
|
||||
dhclient? ( >=net-misc/dhcp-4[client] )
|
||||
dhcpcd? ( net-misc/dhcpcd )
|
||||
elogind? ( >=sys-auth/elogind-219 )
|
||||
gnutls? (
|
||||
dev-libs/libgcrypt:0=[${MULTILIB_USEDEP}]
|
||||
>=net-libs/gnutls-2.12:=[${MULTILIB_USEDEP}] )
|
||||
introspection? ( >=dev-libs/gobject-introspection-0.10.3:= )
|
||||
json? ( >=dev-libs/jansson-2.5[${MULTILIB_USEDEP}] )
|
||||
modemmanager? ( >=net-misc/modemmanager-0.7.991:0= )
|
||||
ncurses? ( >=dev-libs/newt-0.52.15 )
|
||||
nss? ( >=dev-libs/nss-3.11:=[${MULTILIB_USEDEP}] )
|
||||
ofono? ( net-misc/ofono )
|
||||
ovs? ( dev-libs/jansson )
|
||||
ppp? ( >=net-dialup/ppp-2.4.5:=[ipv6] )
|
||||
resolvconf? ( net-dns/openresolv )
|
||||
selinux? ( sys-libs/libselinux )
|
||||
systemd? ( >=sys-apps/systemd-209:0= )
|
||||
teamd? (
|
||||
dev-libs/jansson
|
||||
>=net-misc/libteam-1.9
|
||||
)
|
||||
"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
|| (
|
||||
net-misc/iputils[arping(+)]
|
||||
net-analyzer/arping
|
||||
)
|
||||
wifi? (
|
||||
!iwd? ( >=net-wireless/wpa_supplicant-0.7.3-r3[dbus] )
|
||||
iwd? ( net-wireless/iwd )
|
||||
)
|
||||
"
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
dev-util/gdbus-codegen
|
||||
dev-util/glib-utils
|
||||
dev-util/gtk-doc
|
||||
dev-util/gtk-doc-am
|
||||
>=dev-util/intltool-0.40
|
||||
>=sys-devel/gettext-0.17
|
||||
>=sys-kernel/linux-headers-2.6.29
|
||||
virtual/pkgconfig[${MULTILIB_USEDEP}]
|
||||
introspection? (
|
||||
$(python_gen_any_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]')
|
||||
dev-lang/perl
|
||||
dev-libs/libxslt
|
||||
)
|
||||
vala? ( $(vala_depend) )
|
||||
test? (
|
||||
$(python_gen_any_dep '
|
||||
dev-python/dbus-python[${PYTHON_USEDEP}]
|
||||
dev-python/pygobject:3[${PYTHON_USEDEP}]')
|
||||
)
|
||||
"
|
||||
|
||||
python_check_deps() {
|
||||
if use introspection; then
|
||||
has_version "dev-python/pygobject:3[${PYTHON_USEDEP}]" || return
|
||||
fi
|
||||
if use test; then
|
||||
has_version "dev-python/dbus-python[${PYTHON_USEDEP}]" &&
|
||||
has_version "dev-python/pygobject:3[${PYTHON_USEDEP}]"
|
||||
fi
|
||||
}
|
||||
|
||||
sysfs_deprecated_check() {
|
||||
ebegin "Checking for SYSFS_DEPRECATED support"
|
||||
|
||||
if { linux_chkconfig_present SYSFS_DEPRECATED_V2; }; then
|
||||
eerror "Please disable SYSFS_DEPRECATED_V2 support in your kernel config and recompile your kernel"
|
||||
eerror "or NetworkManager will not work correctly."
|
||||
eerror "See https://bugs.gentoo.org/333639 for more info."
|
||||
die "CONFIG_SYSFS_DEPRECATED_V2 support detected!"
|
||||
fi
|
||||
eend $?
|
||||
}
|
||||
|
||||
pkg_pretend() {
|
||||
if use kernel_linux; then
|
||||
get_version
|
||||
if linux_config_exists; then
|
||||
sysfs_deprecated_check
|
||||
else
|
||||
ewarn "Was unable to determine your kernel .config"
|
||||
ewarn "Please note that if CONFIG_SYSFS_DEPRECATED_V2 is set in your kernel .config, NetworkManager will not work correctly."
|
||||
ewarn "See https://bugs.gentoo.org/333639 for more info."
|
||||
fi
|
||||
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_setup() {
|
||||
if use connection-sharing; then
|
||||
CONFIG_CHECK="~NF_NAT_IPV4 ~NF_NAT_MASQUERADE_IPV4"
|
||||
linux-info_pkg_setup
|
||||
fi
|
||||
enewgroup plugdev
|
||||
if use introspection || use test; then
|
||||
python-any-r1_pkg_setup
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
DOC_CONTENTS="To modify system network connections without needing to enter the
|
||||
root password, add your user account to the 'plugdev' group."
|
||||
|
||||
[ "${PV}" = "9999" ] && eautoreconf
|
||||
use vala && vala_src_prepare
|
||||
gnome2_src_prepare
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local myconf=(
|
||||
--disable-more-warnings
|
||||
--disable-static
|
||||
--localstatedir=/var
|
||||
--disable-lto
|
||||
--disable-config-plugin-ibft
|
||||
--disable-qt
|
||||
--without-netconfig
|
||||
--with-dbus-sys-dir=/etc/dbus-1/system.d
|
||||
# We need --with-libnm-glib (and dbus-glib dep) as reverse deps are
|
||||
# still not ready for removing that lib, bug #665338
|
||||
--with-libnm-glib
|
||||
--with-nmcli=yes
|
||||
--with-udev-dir="$(get_udevdir)"
|
||||
--with-config-plugins-default=keyfile
|
||||
--with-iptables=/sbin/iptables
|
||||
$(multilib_native_enable concheck)
|
||||
--with-crypto=$(usex nss nss gnutls)
|
||||
--with-session-tracking=$(multilib_native_usex systemd systemd $(multilib_native_usex elogind elogind $(multilib_native_usex consolekit consolekit no)))
|
||||
--with-suspend-resume=$(multilib_native_usex systemd systemd $(multilib_native_usex elogind elogind consolekit))
|
||||
$(multilib_native_use_with audit libaudit)
|
||||
$(multilib_native_use_enable bluetooth bluez5-dun)
|
||||
$(use_with dhclient)
|
||||
$(use_with dhcpcd)
|
||||
$(multilib_native_use_enable introspection)
|
||||
$(use_enable json json-validation)
|
||||
$(multilib_native_use_enable ppp)
|
||||
--without-libpsl
|
||||
$(multilib_native_use_with modemmanager modem-manager-1)
|
||||
$(multilib_native_use_with ncurses nmtui)
|
||||
$(multilib_native_use_with ofono)
|
||||
$(multilib_native_use_enable ovs)
|
||||
$(multilib_native_use_with resolvconf)
|
||||
$(multilib_native_use_with selinux)
|
||||
$(multilib_native_use_with systemd systemd-journal)
|
||||
$(multilib_native_use_enable teamd teamdctl)
|
||||
$(multilib_native_use_enable test tests)
|
||||
$(multilib_native_use_enable vala)
|
||||
--without-valgrind
|
||||
$(multilib_native_use_with wifi iwd)
|
||||
$(multilib_native_use_with wext)
|
||||
$(multilib_native_use_enable wifi)
|
||||
)
|
||||
|
||||
if multilib_is_native_abi && use policykit; then
|
||||
myconf+=( --enable-polkit=yes )
|
||||
else
|
||||
myconf+=( --enable-polkit=disabled )
|
||||
fi
|
||||
|
||||
# Same hack as net-dialup/pptpd to get proper plugin dir for ppp, bug #519986
|
||||
if use ppp; then
|
||||
local PPPD_VER=`best_version net-dialup/ppp`
|
||||
PPPD_VER=${PPPD_VER#*/*-} #reduce it to ${PV}-${PR}
|
||||
PPPD_VER=${PPPD_VER%%[_-]*} # main version without beta/pre/patch/revision
|
||||
myconf+=( --with-pppd-plugin-dir=/usr/$(get_libdir)/pppd/${PPPD_VER} )
|
||||
fi
|
||||
|
||||
# unit files directory needs to be passed only when systemd is enabled,
|
||||
# otherwise systemd support is not disabled completely, bug #524534
|
||||
use systemd && myconf+=( --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" )
|
||||
|
||||
if multilib_is_native_abi; then
|
||||
# work-around man out-of-source brokenness, must be done before configure
|
||||
ln -s "${S}/docs" docs || die
|
||||
ln -s "${S}/man" man || die
|
||||
fi
|
||||
|
||||
ECONF_SOURCE=${S} runstatedir="/run" gnome2_src_configure "${myconf[@]}"
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
if multilib_is_native_abi; then
|
||||
emake
|
||||
else
|
||||
local targets=(
|
||||
libnm/libnm.la
|
||||
libnm-util/libnm-util.la
|
||||
libnm-glib/libnm-glib.la
|
||||
libnm-glib/libnm-glib-vpn.la
|
||||
)
|
||||
emake "${targets[@]}"
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_test() {
|
||||
if use test && multilib_is_native_abi; then
|
||||
python_setup
|
||||
virtx emake check
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
if multilib_is_native_abi; then
|
||||
# Install completions at proper place, bug #465100
|
||||
gnome2_src_install completiondir="$(get_bashcompdir)"
|
||||
else
|
||||
local targets=(
|
||||
install-libLTLIBRARIES
|
||||
install-libdeprecatedHEADERS
|
||||
install-libnm_glib_libnmvpnHEADERS
|
||||
install-libnm_glib_libnmincludeHEADERS
|
||||
install-libnm_util_libnm_util_includeHEADERS
|
||||
install-libnmincludeHEADERS
|
||||
install-nodist_libnm_glib_libnmincludeHEADERS
|
||||
install-nodist_libnm_glib_libnmvpnHEADERS
|
||||
install-nodist_libnm_util_libnm_util_includeHEADERS
|
||||
install-nodist_libnmincludeHEADERS
|
||||
install-pkgconfigDATA
|
||||
)
|
||||
emake DESTDIR="${D}" "${targets[@]}"
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
einstalldocs
|
||||
! use systemd && readme.gentoo_create_doc
|
||||
|
||||
newinitd "${FILESDIR}/init.d.NetworkManager-r1" NetworkManager
|
||||
newconfd "${FILESDIR}/conf.d.NetworkManager" NetworkManager
|
||||
|
||||
# Need to keep the /etc/NetworkManager/dispatched.d for dispatcher scripts
|
||||
keepdir /etc/NetworkManager/dispatcher.d
|
||||
|
||||
# Provide openrc net dependency only when nm is connected
|
||||
exeinto /etc/NetworkManager/dispatcher.d
|
||||
newexe "${FILESDIR}/10-openrc-status-r4" 10-openrc-status
|
||||
sed -e "s:@EPREFIX@:${EPREFIX}:g" \
|
||||
-i "${ED}/etc/NetworkManager/dispatcher.d/10-openrc-status" || die
|
||||
|
||||
keepdir /etc/NetworkManager/system-connections
|
||||
chmod 0600 "${ED}"/etc/NetworkManager/system-connections/.keep* # bug #383765, upstream bug #754594
|
||||
|
||||
# Allow users in plugdev group to modify system connections
|
||||
insinto /usr/share/polkit-1/rules.d/
|
||||
doins "${FILESDIR}/01-org.freedesktop.NetworkManager.settings.modify.system.rules"
|
||||
|
||||
if use iwd; then
|
||||
# This goes to $nmlibdir/conf.d/ and $nmlibdir is '${prefix}'/lib/$PACKAGE, thus always lib, not get_libdir
|
||||
cat <<-EOF > "${ED%/}"/usr/lib/NetworkManager/conf.d/iwd.conf
|
||||
[device]
|
||||
wifi.backend=iwd
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Empty
|
||||
rmdir "${ED%/}"/var{/lib{/NetworkManager,},} || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_pkg_postinst
|
||||
systemd_reenable NetworkManager.service
|
||||
! use systemd && readme.gentoo_print_elog
|
||||
|
||||
if [[ -e "${EROOT}etc/NetworkManager/nm-system-settings.conf" ]]; then
|
||||
ewarn "The ${PN} system configuration file has moved to a new location."
|
||||
ewarn "You must migrate your settings from ${EROOT}/etc/NetworkManager/nm-system-settings.conf"
|
||||
ewarn "to ${EROOT}etc/NetworkManager/NetworkManager.conf"
|
||||
ewarn
|
||||
ewarn "After doing so, you can remove ${EROOT}etc/NetworkManager/nm-system-settings.conf"
|
||||
fi
|
||||
|
||||
# NM fallbacks to plugin specified at compile time (upstream bug #738611)
|
||||
# but still show a warning to remember people to have cleaner config file
|
||||
if [[ -e "${EROOT}etc/NetworkManager/NetworkManager.conf" ]]; then
|
||||
if grep plugins "${EROOT}etc/NetworkManager/NetworkManager.conf" | grep -q ifnet; then
|
||||
ewarn
|
||||
ewarn "You seem to use 'ifnet' plugin in ${EROOT}etc/NetworkManager/NetworkManager.conf"
|
||||
ewarn "Since it won't be used, you will need to stop setting ifnet plugin there."
|
||||
ewarn
|
||||
fi
|
||||
fi
|
||||
|
||||
# NM shows lots of errors making nmcli neither unusable, bug #528748 upstream bug #690457
|
||||
if grep -r "psk-flags=1" "${EROOT}"/etc/NetworkManager/; then
|
||||
ewarn "You have psk-flags=1 setting in above files, you will need to"
|
||||
ewarn "either reconfigure affected networks or, at least, set the flag"
|
||||
ewarn "value to '0'."
|
||||
fi
|
||||
}
|
||||
Loading…
Reference in a new issue