Hello community,

here is the log from the commit of package habootstrap-formula for 
openSUSE:Factory checked in at 2020-10-16 16:16:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/habootstrap-formula (Old)
 and      /work/SRC/openSUSE:Factory/.habootstrap-formula.new.3486 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "habootstrap-formula"

Fri Oct 16 16:16:01 2020 rev:17 rq:842051 version:0.3.11+git.1602831614.0f63599

Changes:
--------
--- /work/SRC/openSUSE:Factory/habootstrap-formula/habootstrap-formula.changes  
2020-10-14 15:40:51.830397428 +0200
+++ 
/work/SRC/openSUSE:Factory/.habootstrap-formula.new.3486/habootstrap-formula.changes
        2020-10-16 16:16:42.768735473 +0200
@@ -1,0 +2,6 @@
+Thu Oct 15 21:33:58 UTC 2020 - Simranpal Singh <[email protected]>
+
+- Version bump 0.3.11
+ * Update the prevalidation logic to check for valid sbd entries (jsc#SLE-4047)
+
+-------------------------------------------------------------------

Old:
----
  habootstrap-formula-0.3.10+git.1602612394.3dfa262.tar.gz

New:
----
  habootstrap-formula-0.3.11+git.1602831614.0f63599.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ habootstrap-formula.spec ++++++
--- /var/tmp/diff_new_pack.RANqTO/_old  2020-10-16 16:16:43.736735769 +0200
+++ /var/tmp/diff_new_pack.RANqTO/_new  2020-10-16 16:16:43.740735771 +0200
@@ -20,7 +20,7 @@
 
 Name:           habootstrap-formula
 Group:          System/Packages
-Version:        0.3.10+git.1602612394.3dfa262
+Version:        0.3.11+git.1602831614.0f63599
 Release:        0
 Summary:        HA cluster (crmsh) deployment salt formula
 

++++++ _service ++++++
--- /var/tmp/diff_new_pack.RANqTO/_old  2020-10-16 16:16:43.768735779 +0200
+++ /var/tmp/diff_new_pack.RANqTO/_new  2020-10-16 16:16:43.772735781 +0200
@@ -4,8 +4,8 @@
     <param name="scm">git</param>
     <param name="exclude">.git</param>
     <param name="filename">habootstrap-formula</param>
-    <param name="versionformat">0.3.10+git.%ct.%h</param>
-    <param name="revision">3dfa26232ae11519c7e325e102b9a8b30483940d</param>
+    <param name="versionformat">0.3.11+git.%ct.%h</param>
+    <param name="revision">0f63599fd2548b24e3cbba7d0a18d442d3000f8c</param>
   </service>
 
   <service name="recompress" mode="disabled">

++++++ habootstrap-formula-0.3.10+git.1602612394.3dfa262.tar.gz -> 
habootstrap-formula-0.3.11+git.1602831614.0f63599.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/habootstrap-formula-0.3.10+git.1602612394.3dfa262/_service 
new/habootstrap-formula-0.3.11+git.1602831614.0f63599/_service
--- old/habootstrap-formula-0.3.10+git.1602612394.3dfa262/_service      
2020-10-13 20:06:34.000000000 +0200
+++ new/habootstrap-formula-0.3.11+git.1602831614.0f63599/_service      
2020-10-16 09:00:14.000000000 +0200
@@ -4,7 +4,7 @@
     <param name="scm">git</param>
     <param name="exclude">.git</param>
     <param name="filename">habootstrap-formula</param>
-    <param name="versionformat">0.3.10+git.%ct.%h</param>
+    <param name="versionformat">0.3.11+git.%ct.%h</param>
     <param name="revision">%%VERSION%%</param>
   </service>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/habootstrap-formula-0.3.10+git.1602612394.3dfa262/cluster/pre_validation.sls
 
new/habootstrap-formula-0.3.11+git.1602831614.0f63599/cluster/pre_validation.sls
--- 
old/habootstrap-formula-0.3.10+git.1602612394.3dfa262/cluster/pre_validation.sls
    2020-10-13 20:06:34.000000000 +0200
+++ 
new/habootstrap-formula-0.3.11+git.1602831614.0f63599/cluster/pre_validation.sls
    2020-10-16 09:00:14.000000000 +0200
@@ -15,13 +15,11 @@
   {% endif %}
 {% endif %}
 
-{% if cluster.sbd_checkbox is defined %}
-{% if cluster.sbd.diskless_checkbox is defined and 
cluster.sbd.diskless_checkbox is sameas true %}
-{% do cluster.sbd.update({'device': false}) %}
-{% endif %}
-{% endif %}
-
-
-{% if cluster.sbd.configure_sbd_checkbox is not defined or 
cluster.sbd.configure_sbd_checkbox is sameas false %}
-{% do cluster.sbd.pop('configure_resource', none) %}
+{% if cluster.sbd is defined and cluster.sbd_checkbox is defined %}
+  {% if cluster.sbd.diskless_checkbox is defined and 
cluster.sbd.diskless_checkbox is sameas true %}
+    {% do cluster.sbd.update({'device': false}) %}
+  {% endif %}
+  {% if cluster.sbd.configure_sbd_checkbox is defined and 
cluster.sbd.configure_sbd_checkbox is sameas false %}
+    {% do cluster.sbd.pop('configure_resource', none) %}
+  {% endif %}
 {% endif %}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/habootstrap-formula-0.3.10+git.1602612394.3dfa262/habootstrap-formula.changes
 
new/habootstrap-formula-0.3.11+git.1602831614.0f63599/habootstrap-formula.changes
--- 
old/habootstrap-formula-0.3.10+git.1602612394.3dfa262/habootstrap-formula.changes
   2020-10-13 20:06:34.000000000 +0200
+++ 
new/habootstrap-formula-0.3.11+git.1602831614.0f63599/habootstrap-formula.changes
   2020-10-16 09:00:14.000000000 +0200
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Thu Oct 15 21:33:58 UTC 2020 - Simranpal Singh <[email protected]>
+
+- Version bump 0.3.11
+ * Update the prevalidation logic to check for valid sbd entries (jsc#SLE-4047)
+
+-------------------------------------------------------------------
 Thu Oct  8 20:47:37 UTC 2020 - Dario Maiocchi <[email protected]>
 
 - Version bump 0.3.10


Reply via email to