Hello community,
here is the log from the commit of package habootstrap-formula for
openSUSE:Factory checked in at 2019-07-13 13:50:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/habootstrap-formula (Old)
and /work/SRC/openSUSE:Factory/.habootstrap-formula.new.4615 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "habootstrap-formula"
Sat Jul 13 13:50:04 2019 rev:4 rq:714881 version:0.2.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/habootstrap-formula/habootstrap-formula.changes
2019-07-04 15:43:23.758120881 +0200
+++
/work/SRC/openSUSE:Factory/.habootstrap-formula.new.4615/habootstrap-formula.changes
2019-07-13 14:00:51.650889502 +0200
@@ -1,0 +2,5 @@
+Fri Jul 5 12:24:40 UTC 2019 - Dario Maiocchi <[email protected]>
+
+- Make pkg.install more resilient, allowing retries during install
+
+-------------------------------------------------------------------
Old:
----
habootstrap-formula-0.2.2.tar.gz
New:
----
habootstrap-formula-0.2.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ habootstrap-formula.spec ++++++
--- /var/tmp/diff_new_pack.gf3kcn/_old 2019-07-13 14:00:52.118889359 +0200
+++ /var/tmp/diff_new_pack.gf3kcn/_new 2019-07-13 14:00:52.118889359 +0200
@@ -1,7 +1,7 @@
#
# spec file for package habootstrap-formula
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
%define fdir %{_datadir}/salt-formulas
Name: habootstrap-formula
-Version: 0.2.2
+Version: 0.2.3
Group: System/Packages
Release: 0
Summary: HA cluster (crmsh) deployment salt formula
++++++ habootstrap-formula-0.2.2.tar.gz -> habootstrap-formula-0.2.3.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/habootstrap-formula-0.2.2/Gemfile.lock
new/habootstrap-formula-0.2.3/Gemfile.lock
--- old/habootstrap-formula-0.2.2/Gemfile.lock 2019-07-03 10:01:25.553980874
+0200
+++ new/habootstrap-formula-0.2.3/Gemfile.lock 2019-07-08 17:41:39.462190939
+0200
@@ -23,7 +23,7 @@
aws-sdk-configservice (1.32.0)
aws-sdk-core (~> 3, >= 3.58.0)
aws-sigv4 (~> 1.1)
- aws-sdk-core (3.58.0)
+ aws-sdk-core (3.59.0)
aws-eventstream (~> 1.0, >= 1.0.2)
aws-partitions (~> 1.0)
aws-sigv4 (~> 1.1)
@@ -34,7 +34,7 @@
aws-sdk-dynamodb (1.33.0)
aws-sdk-core (~> 3, >= 3.58.0)
aws-sigv4 (~> 1.1)
- aws-sdk-ec2 (1.98.0)
+ aws-sdk-ec2 (1.99.0)
aws-sdk-core (~> 3, >= 3.58.0)
aws-sigv4 (~> 1.1)
aws-sdk-ecr (1.19.0)
@@ -61,10 +61,10 @@
aws-sdk-organizations (1.17.0)
aws-sdk-core (~> 3, >= 3.39.0)
aws-sigv4 (~> 1.0)
- aws-sdk-rds (1.61.0)
+ aws-sdk-rds (1.62.0)
aws-sdk-core (~> 3, >= 3.58.0)
aws-sigv4 (~> 1.1)
- aws-sdk-s3 (1.44.0)
+ aws-sdk-s3 (1.45.0)
aws-sdk-core (~> 3, >= 3.58.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.1)
@@ -92,7 +92,7 @@
docker-api (1.34.2)
excon (>= 0.47.0)
multi_json
- domain_name (0.5.20180417)
+ domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
ed25519 (1.2.4)
equatable (0.5.0)
@@ -275,7 +275,7 @@
thor (0.20.3)
timeliness (0.3.10)
timers (4.3.0)
- tins (1.20.3)
+ tins (1.21.0)
tomlrb (1.2.8)
train (2.1.13)
azure_graph_rbac (~> 0.16)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/habootstrap-formula-0.2.2/cluster/ntp.sls
new/habootstrap-formula-0.2.3/cluster/ntp.sls
--- old/habootstrap-formula-0.2.2/cluster/ntp.sls 2019-07-03
10:01:25.553980874 +0200
+++ new/habootstrap-formula-0.2.3/cluster/ntp.sls 2019-07-08
17:41:39.462190939 +0200
@@ -2,7 +2,10 @@
{% if grains['osmajorrelease']|int == 12 %}
ntp:
- pkg.installed
+ pkg.installed:
+ - retry:
+ attempts: 3
+ interval: 15
/etc/ntp.conf:
file.append:
@@ -17,8 +20,11 @@
{% else %} # SLES15
chrony:
- pkg.installed
-
+ pkg.installed:
+ - retry:
+ attempts: 3
+ interval: 15
+
/etc/chrony.conf:
file.append:
- text:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/habootstrap-formula-0.2.2/cluster/packages.sls
new/habootstrap-formula-0.2.3/cluster/packages.sls
--- old/habootstrap-formula-0.2.2/cluster/packages.sls 2019-07-03
10:01:25.553980874 +0200
+++ new/habootstrap-formula-0.2.3/cluster/packages.sls 2019-07-08
17:41:39.462190939 +0200
@@ -18,6 +18,9 @@
install_cluster_packages:
pkg.installed:
+ - retry:
+ attempts: 3
+ interval: 15
- pkgs:
- crmsh
- ha-cluster-bootstrap
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/habootstrap-formula-0.2.2/cluster/resource_agents.sls
new/habootstrap-formula-0.2.3/cluster/resource_agents.sls
--- old/habootstrap-formula-0.2.2/cluster/resource_agents.sls 2019-07-03
10:01:25.553980874 +0200
+++ new/habootstrap-formula-0.2.3/cluster/resource_agents.sls 2019-07-08
17:41:39.462190939 +0200
@@ -3,6 +3,9 @@
{% if cluster.resource_agents is defined and cluster.resource_agents|length>0
%}
install_resource_agents:
pkg.installed:
+ - retry:
+ attempts: 3
+ interval: 15
- pkgs:
{% for package in cluster.resource_agents %}
- {{ package }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/habootstrap-formula-0.2.2/habootstrap-formula.changes
new/habootstrap-formula-0.2.3/habootstrap-formula.changes
--- old/habootstrap-formula-0.2.2/habootstrap-formula.changes 2019-07-03
10:01:25.553980874 +0200
+++ new/habootstrap-formula-0.2.3/habootstrap-formula.changes 2019-07-08
17:41:39.462190939 +0200
@@ -1,4 +1,9 @@
-------------------------------------------------------------------
+Fri Jul 5 12:24:40 UTC 2019 - Dario Maiocchi <[email protected]>
+
+- Make pkg.install more resilient, allowing retries during install
+
+-------------------------------------------------------------------
Tue Jul 2 11:18:50 UTC 2019 - Diego Vinicius Akechi <[email protected]>
- Version bump 0.2.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/habootstrap-formula-0.2.2/habootstrap-formula.spec
new/habootstrap-formula-0.2.3/habootstrap-formula.spec
--- old/habootstrap-formula-0.2.2/habootstrap-formula.spec 2019-07-03
10:01:25.553980874 +0200
+++ new/habootstrap-formula-0.2.3/habootstrap-formula.spec 2019-07-08
17:41:39.462190939 +0200
@@ -1,7 +1,7 @@
#
# spec file for package habootstrap-formula
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
%define fdir %{_datadir}/salt-formulas
Name: habootstrap-formula
-Version: 0.2.2
+Version: 0.2.3
Group: System/Packages
Release: 0
Summary: HA cluster (crmsh) deployment salt formula
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/habootstrap-formula-0.2.2/test/salt/master/repos.sls
new/habootstrap-formula-0.2.3/test/salt/master/repos.sls
--- old/habootstrap-formula-0.2.2/test/salt/master/repos.sls 2019-07-03
10:01:25.553980874 +0200
+++ new/habootstrap-formula-0.2.3/test/salt/master/repos.sls 2019-07-08
17:41:39.462190939 +0200
@@ -7,5 +7,8 @@
salt-shaptools:
pkg.installed:
- fromrepo: shap-factory-repo
+ - retry:
+ attempts: 3
+ interval: 15
- require:
- add-shap-factory-repo