Hello community,
here is the log from the commit of package container-registry-systemd for
openSUSE:Factory checked in at 2019-11-03 12:23:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/container-registry-systemd (Old)
and /work/SRC/openSUSE:Factory/.container-registry-systemd.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "container-registry-systemd"
Sun Nov 3 12:23:58 2019 rev:3 rq:744896 version:0.0+git20191102.b2b9ebf
Changes:
--------
---
/work/SRC/openSUSE:Factory/container-registry-systemd/container-registry-systemd.changes
2019-10-22 15:46:21.737780561 +0200
+++
/work/SRC/openSUSE:Factory/.container-registry-systemd.new.2990/container-registry-systemd.changes
2019-11-03 12:24:01.301499324 +0100
@@ -1,0 +2,6 @@
+Sat Nov 02 14:39:30 UTC 2019 - [email protected]
+
+- Update to version 0.0+git20191102.b2b9ebf:
+ * Fix syntax errors in if statements
+
+-------------------------------------------------------------------
Old:
----
container-registry-systemd-0.0+git20191022.f65282e.tar.xz
New:
----
container-registry-systemd-0.0+git20191102.b2b9ebf.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ container-registry-systemd.spec ++++++
--- /var/tmp/diff_new_pack.mhXAw4/_old 2019-11-03 12:24:01.833499987 +0100
+++ /var/tmp/diff_new_pack.mhXAw4/_new 2019-11-03 12:24:01.833499987 +0100
@@ -17,7 +17,7 @@
Name: container-registry-systemd
-Version: 0.0+git20191022.f65282e
+Version: 0.0+git20191102.b2b9ebf
Release: 0
Summary: Systemd service files and config files for container-registry
License: GPL-3.0-or-later
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.mhXAw4/_old 2019-11-03 12:24:01.861500022 +0100
+++ /var/tmp/diff_new_pack.mhXAw4/_new 2019-11-03 12:24:01.861500022 +0100
@@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param
name="url">git://github.com/thkukuk/container-registry-systemd.git</param>
- <param
name="changesrevision">f65282ea5c2dbfe3f905dca8702db4a76aca451b</param>
+ <param
name="changesrevision">b2b9ebfbd4eac8445698775ee349392ce49cb6db</param>
</service>
</servicedata>
\ No newline at end of file
++++++ container-registry-systemd-0.0+git20191022.f65282e.tar.xz ->
container-registry-systemd-0.0+git20191102.b2b9ebf.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/container-registry-systemd-0.0+git20191022.f65282e/create-container-registry-certs.sh
new/container-registry-systemd-0.0+git20191102.b2b9ebf/create-container-registry-certs.sh
---
old/container-registry-systemd-0.0+git20191022.f65282e/create-container-registry-certs.sh
2019-10-22 10:58:23.000000000 +0200
+++
new/container-registry-systemd-0.0+git20191102.b2b9ebf/create-container-registry-certs.sh
2019-11-02 15:38:19.000000000 +0100
@@ -51,11 +51,11 @@
IP_ADDRS=`echo -n ${IP_ADDRS} | tr ' ' ','`
HOSTNAMES=`echo -n ${HOSTNAMES} | tr ' ' ','`
-if [ ! -z USE_PORTUS ]; then
+if [ ! -z "${USE_PORTUS}" ]; then
certstrap --depot-path ${CERTDIR} request-cert -ip ${IP_ADDRS} -domain
${HOSTNAMES} --passphrase "" --common-name portus
certstrap --depot-path ${CERTDIR} sign portus --CA "ContainerRegistryCA"
fi
-if [ ! -z USE_DOCKER_AUTH ]; then
+if [ ! -z "${USE_DOCKER_AUTH}" ]; then
certstrap --depot-path ${CERTDIR} request-cert -ip ${IP_ADDRS} -domain
${HOSTNAMES} --passphrase "" --common-name auth_server
certstrap --depot-path ${CERTDIR} sign auth_server --CA
"ContainerRegistryCA"
fi