https://bugzilla.novell.com/show_bug.cgi?id=800817 https://bugzilla.novell.com/show_bug.cgi?id=800817#c0 Summary: NETWORKMANAGER=yes/no is gone in in favour of network.service alias link Classification: openSUSE Product: openSUSE Factory Version: 12.3 Beta 1 Platform: All OS/Version: SUSE Other Status: NEW Severity: Normal Priority: P5 - None Component: Installation AssignedTo: ms@suse.com ReportedBy: mt@suse.com QAContact: jsrain@suse.com CC: bili@suse.com, fcrozat@suse.com, mfilka@suse.com Depends on: 800771 Found By: --- Blocker: --- kiwi-config-openSUSE.spec is still using NETWORKMANAGER=yes/no, e.g. in the spec file: if test $desktop = x11; then echo 'baseUpdateSysConfig /etc/sysconfig/network/config NETWORKMANAGER no'
config.sh else echo 'baseUpdateSysConfig /etc/sysconfig/network/config NETWORKMANAGER yes' >> config.sh fi
The code behind needs to be adopted to something like: if test $desktop = x11; then systemctl -f enable NetworkManager.service || : else systemctl disable NetworkManager.service || : fi +++ This bug was initially created as a clone of Bug #800771 +++ Created an attachment (id=522207) --> (http://bugzilla.novell.com/attachment.cgi?id=522207) network-service-switch.sh: illustration script The NETWORKMANAGER=yes/no variable /etc/sysconfig/network/config has been replaced with the use of network.service alias link, which is created while "systemctl enable". The enabled service masks the LSB /etc/init.d/network script as provided by sysconfig using the following addition in its systemd service file: [Install] +Alias=network.service The service name providing the network.sevice alias is visible in the "Id" systemctl property or it shows "network.service" as "Id" when the /etc/init.d/network is used. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.