Skip to content

Commit

Permalink
BNC#878073. Stating to run 'journalctl -xn' manually for log. Update …
Browse files Browse the repository at this point in the history
…version to 3.1.2
  • Loading branch information
nick-wang committed May 21, 2014
1 parent 322246e commit d9c692e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 6 additions & 0 deletions package/yast2-cluster.changes
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed May 21 06:49:25 UTC 2014 - nwang@suse.com

- BNC#878073. Stating to run "journalctl -xn" manually for log.
Update version to 3.1.2 to trigger ibs/obs release.

-------------------------------------------------------------------
Wed Apr 23 07:41:49 UTC 2014 - nwang@suse.com

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-cluster.spec
Expand Up @@ -18,7 +18,7 @@

Name: yast2-cluster
%define _fwdefdir /etc/sysconfig/SuSEfirewall2.d/services
Version: 3.1.1
Version: 3.1.2
Release: 0
License: GPL-2.0
Group: System/YaST
Expand Down
7 changes: 5 additions & 2 deletions src/include/cluster/dialogs.rb
Expand Up @@ -901,13 +901,16 @@ def ServiceDialog
if ret == "start_now"
Cluster.save_csync2_conf
Cluster.SaveClusterConfig
Report.Error(Service.Error) if !Service.Start("pacemaker")
# BNC#872651 , add more info about error message
errormsg = "See 'journalctl -xn' for details"
Report.Error(Service.Error + errormsg) if !Service.Start("pacemaker")
next
end

if ret == "stop_now"
errormsg = "See 'journalctl -xn' for details"
# BNC#874563,stop pacemaker could stop corosync since BNC#872651 is fixed
Report.Error(Service.Error) if !Service.Stop("pacemaker")
Report.Error(Service.Error + errormsg) if !Service.Stop("pacemaker")
next
end

Expand Down

0 comments on commit d9c692e

Please sign in to comment.