[yast-commit] [ci_new_pac] JFYI yast2 -> sle12
Script 'mail_helper' called by ro Hello packager, This is just FYI. Your package was checked in in distribution "sle12" by autobuild-member: ro. Here comes the log... ---------------------------%<------------------------------ Hi, here is the log from ci_new_pac /mounts/work_src_done/SLE12/yast2 -> sle12 ## BNC# 864934 : "AppArmor results to be disabled in yast, Starting it fails with error message." (RESOLVED/FIXED) Changes: -------- --- /work/SRC/SUSE:SLE-12:GA/yast2/yast2.changes 2014-02-27 16:11:45.000000000 +0100 +++ /mounts/work_src_done/SLE12/yast2/yast2.changes 2014-03-04 13:31:40.000000000 +0100 @@ -1,0 +2,7 @@ +Tue Mar 4 12:20:41 UTC 2014 - vmoravec@suse.com + +- Allow the Service module to configure services witout + systemd unit files (bnc#864934) +- 3.1.21 + +------------------------------------------------------------------- calling whatdependson for sle12-i586 Packages directly triggered for rebuild: - yast2 - at least 73 other packages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/SUSE:SLE-12:GA/yast2 (Old) and /mounts/work_src_done/SLE12/yast2 (BS:build ID:33815 MAIL:yast-commit@opensuse.org) (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "yast2", Maintainer is "yast-commit@opensuse.org" Old: ---- yast2-3.1.20.tar.bz2 New: ---- yast2-3.1.21.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2.spec ++++++ --- /var/tmp/diff_new_pack.T49rxN/_old 2014-03-04 17:50:08.000000000 +0100 +++ /var/tmp/diff_new_pack.T49rxN/_new 2014-03-04 17:50:08.000000000 +0100 @@ -17,8 +17,9 @@ Name: yast2 -Version: 3.1.20 +Version: 3.1.21 Release: 0 +URL: https://github.com/yast/yast-yast2 BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: %{name}-%{version}.tar.bz2 @@ -212,10 +213,12 @@ %{yast_scrconfdir}/* %{yast_ybindir}/* %{yast_agentdir}/ag_* -%{_sysconfdir}/bash_completion.d/yast2*.sh -%{_sysconfdir}/YaST2/XVersion /var/adm/fillup-templates/sysconfig.yast2 +# configuration files +%config %{_sysconfdir}/bash_completion.d/yast2*.sh +%config %{_sysconfdir}/YaST2/XVersion + # documentation (not included in devel subpackage) %doc %dir %{yast_docdir} %doc %{yast_docdir}/COPYING ++++++ yast2-3.1.20.tar.bz2 -> yast2-3.1.21.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.20/library/runlevel/src/modules/Service.rb new/yast2-3.1.21/library/runlevel/src/modules/Service.rb --- old/yast2-3.1.20/library/runlevel/src/modules/Service.rb 2014-02-27 11:05:00.000000000 +0100 +++ new/yast2-3.1.21/library/runlevel/src/modules/Service.rb 2014-03-04 16:41:14.000000000 +0100 @@ -108,8 +108,6 @@ return false end - service_exists = false - possible_service_locations = Builtins.add( # all known $service.service locations Builtins.maplist(@systemd_dirs) do |directory| @@ -202,8 +200,6 @@ # @param [String] name service name # @return true if service is set to run in any runlevel def Enabled(name) - return false if !checkExists(name) - SCR.Execute( path(".target.bash"), Builtins.sformat("%1 is-enabled %2.service", @invoker, name) @@ -234,7 +230,6 @@ # @param [String] name name of the service # @return init script exit status or -1 if it does not exist def Status(name) - return -1 if !checkExists(name) Convert.to_integer( SCR.Execute( path(".target.bash"), @@ -295,11 +290,6 @@ # defaults. # @return [Boolean] success state def Adjust(name, action) - if !checkExists(name) - Builtins.y2error("Service %1 does not exist.", name) - return false - end - is_enabled = Enabled(name) if action == "disable" @@ -509,7 +499,6 @@ # @param [String] service service to be enabled # @return true if operation is successful def Enable(service) - return false if !checkExists(service) Builtins.y2milestone("Enabling service %1", service) Adjust(service, "enable") end @@ -518,7 +507,6 @@ # @param [String] service service to be disabled # @return true if operation is successful def Disable(service) - return false if !checkExists(service) Builtins.y2milestone("Disabling service %1", service) Adjust(service, "disable") end @@ -527,8 +515,6 @@ # @param [String] service service to be started # @return true if operation is successful def Start(service) - return false if !checkExists(service) - ret = nil Builtins.y2milestone("Starting service %1", service) ret = RunInitScript(service, "start") Builtins.y2debug("ret=%1", ret) @@ -539,8 +525,6 @@ # @param [String] service service to be restarted # @return true if operation is successful def Restart(service) - return false if !checkExists(service) - ret = nil Builtins.y2milestone("Restarting service %1", service) ret = RunInitScript(service, "restart") Builtins.y2debug("ret=%1", ret) @@ -551,8 +535,6 @@ # @param [String] service service to be reloaded # @return true if operation is successful def Reload(service) - return false if !checkExists(service) - ret = nil Builtins.y2milestone("Reloading service %1", service) ret = RunInitScript(service, "reload") Builtins.y2debug("ret=%1", ret) @@ -563,8 +545,6 @@ # @param [String] service service to be stopped # @return true if operation is successful def Stop(service) - return false if !checkExists(service) - ret = nil Builtins.y2milestone("Stopping service %1", service) ret = RunInitScript(service, "stop") Builtins.y2debug("ret=%1", ret) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.20/library/runlevel/testsuite/tests/GetSetServiceStatus.out new/yast2-3.1.21/library/runlevel/testsuite/tests/GetSetServiceStatus.out --- old/yast2-3.1.20/library/runlevel/testsuite/tests/GetSetServiceStatus.out 2014-02-27 11:05:00.000000000 +0100 +++ new/yast2-3.1.21/library/runlevel/testsuite/tests/GetSetServiceStatus.out 2014-03-04 16:41:14.000000000 +0100 @@ -1,14 +1,7 @@ Read .target.tmpdir "/tmp" -Read .target.stat "/usr/lib/systemd/system/iscsid.service" $["isreg":true] Execute .target.bash "/bin/systemctl is-enabled iscsid.service" 0 Return true -Read .target.stat "/usr/lib/systemd/system/boot.iscsid-early.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/boot.iscsid-early.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/boot.iscsid-early.service" $["isreg":true] Execute .target.bash "/bin/systemctl is-enabled boot.iscsid-early.service" 0 Return true -Read .target.stat "/usr/lib/systemd/system/iscsid.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/iscsid.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/iscsid.service" $["isreg":true] Execute .target.bash "/bin/systemctl is-enabled iscsid.service" 0 Return true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.20/library/runlevel/testsuite/tests/ServiceAdjust.out new/yast2-3.1.21/library/runlevel/testsuite/tests/ServiceAdjust.out --- old/yast2-3.1.20/library/runlevel/testsuite/tests/ServiceAdjust.out 2014-02-27 11:05:00.000000000 +0100 +++ new/yast2-3.1.21/library/runlevel/testsuite/tests/ServiceAdjust.out 2014-03-04 16:41:14.000000000 +0100 @@ -1,35 +1,20 @@ Read .target.tmpdir "/tmp" -Read .target.stat "/usr/lib/systemd/system/aaa.service" $[] -Read .target.stat "/run/systemd/system/aaa.service" $[] -Read .target.stat "/etc/systemd/system/aaa.service" $[] -Read .target.stat "/etc/init.d/aaa" $[] -Log Service aaa does not exist. -Return false -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] Execute .target.bash "/bin/systemctl is-enabled aaa.service" 0 Execute .target.bash_output "/bin/systemctl disable aaa.service" $["exit":0, "stderr":"", "stdout":""] Return true -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] Execute .target.bash "/bin/systemctl is-enabled aaa.service" 0 Execute .target.bash_output "/bin/systemctl disable aaa.service" $["exit":0, "stderr":"", "stdout":""] Return true -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] +Execute .target.bash "/bin/systemctl is-enabled aaa.service" 0 +Execute .target.bash_output "/bin/systemctl disable aaa.service" $["exit":0, "stderr":"", "stdout":""] +Return true Execute .target.bash "/bin/systemctl is-enabled aaa.service" 0 Return true -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] Execute .target.bash "/bin/systemctl is-enabled aaa.service" 0 Return true -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] Execute .target.bash "/bin/systemctl is-enabled aaa.service" 0 Execute .target.bash_output "/bin/systemctl enable aaa.service" $["exit":0, "stderr":"", "stdout":""] Return true -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] Execute .target.bash "/bin/systemctl is-enabled aaa.service" 0 Execute .target.bash_output "/bin/systemctl enable aaa.service" $["exit":0, "stderr":"", "stdout":""] Return true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.20/library/runlevel/testsuite/tests/ServiceFinetune.out new/yast2-3.1.21/library/runlevel/testsuite/tests/ServiceFinetune.out --- old/yast2-3.1.20/library/runlevel/testsuite/tests/ServiceFinetune.out 2014-02-27 11:05:00.000000000 +0100 +++ new/yast2-3.1.21/library/runlevel/testsuite/tests/ServiceFinetune.out 2014-03-04 16:41:14.000000000 +0100 @@ -1,8 +1,6 @@ Read .target.tmpdir "/tmp" Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] Log Cannot enable service aaa (just) in selected runlevels, enabling in all default ones -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] Execute .target.bash "/bin/systemctl is-enabled aaa.service" 0 Return true Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.20/library/runlevel/testsuite/tests/ServiceFullInfo.out new/yast2-3.1.21/library/runlevel/testsuite/tests/ServiceFullInfo.out --- old/yast2-3.1.20/library/runlevel/testsuite/tests/ServiceFullInfo.out 2014-02-27 11:05:00.000000000 +0100 +++ new/yast2-3.1.21/library/runlevel/testsuite/tests/ServiceFullInfo.out 2014-03-04 16:41:14.000000000 +0100 @@ -4,6 +4,5 @@ Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] Read .init.scripts.runlevel "aaa" $["aaa":$["start":["0", "1", "3"], "stop":["4", "5", "6"]]] Read .init.scripts.comment "aaa" $["aaa":$["defstart":["0", "1", "3"], "defstop":["4", "5", "6"]]] -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] Execute .target.bash "/bin/systemctl status aaa.service" $["TERM":"raw"] 3 Return $["defstart":["0", "1", "3"], "defstop":["4", "5", "6"], "start":["0", "1", "3"], "started":3, "stop":["4", "5", "6"]] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.20/library/runlevel/testsuite/tests/ServiceStatus.out new/yast2-3.1.21/library/runlevel/testsuite/tests/ServiceStatus.out --- old/yast2-3.1.20/library/runlevel/testsuite/tests/ServiceStatus.out 2014-02-27 11:05:00.000000000 +0100 +++ new/yast2-3.1.21/library/runlevel/testsuite/tests/ServiceStatus.out 2014-03-04 16:41:14.000000000 +0100 @@ -1,4 +1,3 @@ Read .target.tmpdir "/tmp" -Read .target.stat "/usr/lib/systemd/system/aaa.service" $["isreg":true] Execute .target.bash "/bin/systemctl status aaa.service" $["TERM":"raw"] 3 Return 3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.20/package/yast2.changes new/yast2-3.1.21/package/yast2.changes --- old/yast2-3.1.20/package/yast2.changes 2014-02-27 11:05:00.000000000 +0100 +++ new/yast2-3.1.21/package/yast2.changes 2014-03-04 16:41:14.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Mar 4 12:20:41 UTC 2014 - vmoravec@suse.com + +- Allow the Service module to configure services witout + systemd unit files (bnc#864934) +- 3.1.21 + +------------------------------------------------------------------- Thu Feb 27 09:56:16 UTC 2014 - vmoravec@suse.com - Add systemd socket support (bnc#853300) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.20/package/yast2.spec new/yast2-3.1.21/package/yast2.spec --- old/yast2-3.1.20/package/yast2.spec 2014-02-27 11:05:00.000000000 +0100 +++ new/yast2-3.1.21/package/yast2.spec 2014-03-04 16:41:14.000000000 +0100 @@ -17,8 +17,9 @@ Name: yast2 -Version: 3.1.20 +Version: 3.1.21 Release: 0 +URL: https://github.com/yast/yast-yast2 BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: %{name}-%{version}.tar.bz2 @@ -212,10 +213,12 @@ %{yast_scrconfdir}/* %{yast_ybindir}/* %{yast_agentdir}/ag_* -%{_sysconfdir}/bash_completion.d/yast2*.sh -%{_sysconfdir}/YaST2/XVersion /var/adm/fillup-templates/sysconfig.yast2 +# configuration files +%config %{_sysconfdir}/bash_completion.d/yast2*.sh +%config %{_sysconfdir}/YaST2/XVersion + # documentation (not included in devel subpackage) %doc %dir %{yast_docdir} %doc %{yast_docdir}/COPYING continue with "q"... Checked in at Tue Mar 4 17:51:13 CET 2014 by ro Remember to have fun... -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
ro