Hello community,

here is the log from the commit of package container-registry-systemd for 
openSUSE:Factory checked in at 2020-01-16 18:21:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/container-registry-systemd (Old)
 and      /work/SRC/openSUSE:Factory/.container-registry-systemd.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "container-registry-systemd"

Thu Jan 16 18:21:22 2020 rev:6 rq:764731 version:0.0+git20200115.5e372f5

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/container-registry-systemd/container-registry-systemd.changes
    2019-12-30 12:34:36.863797547 +0100
+++ 
/work/SRC/openSUSE:Factory/.container-registry-systemd.new.26092/container-registry-systemd.changes
 2020-01-16 18:21:26.056981377 +0100
@@ -1,0 +2,6 @@
+Wed Jan 15 15:33:54 UTC 2020 - ku...@suse.com
+
+- Update to version 0.0+git20200115.5e372f5:
+  * Ignore if pull fails, continue with old image in that case
+
+-------------------------------------------------------------------

Old:
----
  container-registry-systemd-0.0+git20191229.fbbe884.tar.xz

New:
----
  container-registry-systemd-0.0+git20200115.5e372f5.tar.xz

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

Other differences:
------------------
++++++ container-registry-systemd.spec ++++++
--- /var/tmp/diff_new_pack.muBRGe/_old  2020-01-16 18:21:27.056981943 +0100
+++ /var/tmp/diff_new_pack.muBRGe/_new  2020-01-16 18:21:27.056981943 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package container-registry-systemd
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           container-registry-systemd
-Version:        0.0+git20191229.fbbe884
+Version:        0.0+git20200115.5e372f5
 Release:        0
 Summary:        Systemd service files and config files for container-registry
 License:        GPL-3.0-or-later

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.muBRGe/_old  2020-01-16 18:21:27.084981960 +0100
+++ /var/tmp/diff_new_pack.muBRGe/_new  2020-01-16 18:21:27.084981960 +0100
@@ -1,6 +1,6 @@
 <servicedata>
   <service name="tar_scm">
     <param 
name="url">git://github.com/kubic-project/container-registry-systemd.git</param>
-    <param 
name="changesrevision">fbbe884b36ac072012796e6ed4af3d4c0fdc0022</param>
+    <param 
name="changesrevision">5e372f5455e6bb566b83a4afb0469a8f4f8a89c0</param>
  </service>
 </servicedata>
\ No newline at end of file

++++++ container-registry-systemd-0.0+git20191229.fbbe884.tar.xz -> 
container-registry-systemd-0.0+git20200115.5e372f5.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/container-registry-systemd-0.0+git20191229.fbbe884/container-registry.service
 
new/container-registry-systemd-0.0+git20200115.5e372f5/container-registry.service
--- 
old/container-registry-systemd-0.0+git20191229.fbbe884/container-registry.service
   2019-12-29 10:56:58.000000000 +0100
+++ 
new/container-registry-systemd-0.0+git20200115.5e372f5/container-registry.service
   2020-01-15 16:07:09.000000000 +0100
@@ -12,7 +12,7 @@
 EnvironmentFile=/etc/sysconfig/container-registry
 ExecStartPre=-/usr/bin/podman stop %N
 ExecStartPre=-/usr/bin/podman rm %N
-ExecStartPre=/usr/bin/podman pull ${REGISTRY_IMAGE_PATH}
+ExecStartPre=-/usr/bin/podman pull ${REGISTRY_IMAGE_PATH}
 ExecStartPre=/bin/bash -c 'rm -rf /var/lib/container-registry/*; mkdir -p 
/var/lib/container-registry; if [ -d /usr/etc/registry ]; then cp -a 
/usr/etc/registry/* /var/lib/container-registry/; fi; cp -a /etc/registry/* 
/var/lib/container-registry/'
 ExecStart=/usr/bin/podman run --rm -v 
/var/lib/container-registry:/etc/registry -p ${EXTERNAL_PORT}:5000 -v 
${STORAGE_DIR}:/var/lib/registry --name %N ${REGISTRY_IMAGE_PATH}
 ExecStop=/usr/bin/podman stop -t 2 %N
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/container-registry-systemd-0.0+git20191229.fbbe884/registry-auth_server.service
 
new/container-registry-systemd-0.0+git20200115.5e372f5/registry-auth_server.service
--- 
old/container-registry-systemd-0.0+git20191229.fbbe884/registry-auth_server.service
 2019-12-29 10:56:58.000000000 +0100
+++ 
new/container-registry-systemd-0.0+git20200115.5e372f5/registry-auth_server.service
 2020-01-15 16:07:09.000000000 +0100
@@ -13,7 +13,7 @@
 EnvironmentFile=/etc/sysconfig/container-registry
 ExecStartPre=-/usr/bin/podman stop %N
 ExecStartPre=-/usr/bin/podman rm %N
-ExecStartPre=/usr/bin/podman pull ${AUTH_SERVER_IMAGE_PATH}
+ExecStartPre=-/usr/bin/podman pull ${AUTH_SERVER_IMAGE_PATH}
 ExecStart=/usr/bin/podman run --rm -v /etc/registry:/etc/registry -p 5001:5001 
--name %N ${AUTH_SERVER_IMAGE_PATH}
 ExecStop=/usr/bin/podman stop -t 2 %N
 


Reply via email to