diff --git a/systemd-presets-branding-openSUSE.changes b/systemd-presets-branding-openSUSE.changes index 589c4a6..a42c31c 100644 --- a/systemd-presets-branding-openSUSE.changes +++ b/systemd-presets-branding-openSUSE.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Dec 12 10:05:57 CET 2017 - kukuk@suse.de + +- Don't disable services with preset-all in %posttrans, the network + is special and would be disabled. + ------------------------------------------------------------------- Mon Dec 11 16:17:30 CET 2017 - kukuk@suse.de diff --git a/systemd-presets-branding-openSUSE.spec b/systemd-presets-branding-openSUSE.spec index 59206a8..13fc817 100644 --- a/systemd-presets-branding-openSUSE.spec +++ b/systemd-presets-branding-openSUSE.spec @@ -86,7 +86,10 @@ fi %posttrans if [ -f /run/rpm-%{name}-preset-all ]; then - systemctl preset-all + # Enable all services, which were installed before systemd + # Don't disable services, since this would disable the + # complete network stack. + systemctl preset-all --preset-mode=enable-only fi rm -f /run/rpm-%{name}-preset-all