Accepting request 298161 from YaST:Head

submit new version 3.1.140

OBS-URL: https://build.opensuse.org/request/show/298161
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yast2-installation?expand=0&rev=331
This commit is contained in:
Dominique Leuenberger 2015-04-21 23:12:46 +00:00 committed by Git OBS Bridge
commit dbbde65343
5 changed files with 29 additions and 5 deletions

View File

@ -18,7 +18,7 @@ Environment=SYSTEMCTL_OPTIONS=--ignore-dependencies TERM=linux PX_MODULE_PATH=""
# If the system starts in multi-user mode plymouth will be quit while
# installation in order to ensure that installation will be finished on
# console 1 and the login prompt. (bnc#903682,889757,897956)
ExecStartPre=/bin/sh -c 'if [ `/usr/bin/systemctl get-default` = "multi-user.target" ];then /usr/bin/plymouth quit; else /usr/bin/plymouth deactivate --hide-splash; fi'
ExecStartPre=/bin/sh -c 'if [ -x /usr/bin/plymouth ] ; then if [ `/usr/bin/systemctl get-default` = "multi-user.target" ];then /usr/bin/plymouth quit; else /usr/bin/plymouth deactivate --hide-splash; fi; fi'
ExecStart=/usr/lib/YaST2/startup/YaST2.Second-Stage
RemainAfterExit=yes
TimeoutSec=0

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ed6c78672c8200a07c00361dd5b18d22e056651f8b1ee43daf9ed9094343f5db
size 1211983

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a8c5eaf1412c628936ede8cdd0f23f9b2b62a7f35ad5174972b6ad7b2403d79a
size 386494

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Wed Apr 20 13:11:40 CEST 2015 - schubi@suse.de
- Fixed differnt bugs in proposal overview with multiple tabs.
- Checking if plymouth is available while starting second
installation stage for AutoYaST.
- 3.1.140
-------------------------------------------------------------------
Thu Apr 16 13:02:23 CEST 2015 - locilka@suse.com
- Always enable systemd startup services for Second Stage and
Firstboot (bsc#924278)
- 3.1.139
-------------------------------------------------------------------
Thu Apr 2 09:27:55 UTC 2015 - jreidinger@suse.com

View File

@ -17,7 +17,7 @@
Name: yast2-installation
Version: 3.1.138
Version: 3.1.140
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -172,6 +172,15 @@ install -m 644 %{SOURCE2} %{buildroot}%{_unitdir}
%service_add_post YaST2-Second-Stage.service YaST2-Firstboot.service
# bsc#924278 Always enable these services by default, they are already listed
# in systemd-presets-branding package, but that works for new installations
# only, it does not work for upgrades from SLE 11 where scripts had different
# name and were not handled by systemd.
# When we upgrade/update from systemd-based system, scripts are always enabled
# by the %service_add_post macro.
systemctl enable YaST2-Second-Stage.service
systemctl enable YaST2-Firstboot.service
%pre
%service_add_pre YaST2-Second-Stage.service YaST2-Firstboot.service