Hello community,

here is the log from the commit of package containers-systemd for 
openSUSE:Factory checked in at 2020-02-20 14:55:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/containers-systemd (Old)
 and      /work/SRC/openSUSE:Factory/.containers-systemd.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "containers-systemd"

Thu Feb 20 14:55:44 2020 rev:8 rq:777380 version:0.0+git20200219.a6acfd1

Changes:
--------
--- /work/SRC/openSUSE:Factory/containers-systemd/containers-systemd.changes    
2020-02-18 10:43:07.197276820 +0100
+++ 
/work/SRC/openSUSE:Factory/.containers-systemd.new.26092/containers-systemd.changes
 2020-02-20 14:55:52.546346387 +0100
@@ -1,0 +2,7 @@
+Wed Feb 19 14:56:48 UTC 2020 - [email protected]
+
+- Update to version 0.0+git20200219.a6acfd1:
+  * Adjust for new nginx container image
+  * Fix comment
+
+-------------------------------------------------------------------

Old:
----
  containers-systemd-0.0+git20200217.580c00f.tar.xz

New:
----
  containers-systemd-0.0+git20200219.a6acfd1.tar.xz

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

Other differences:
------------------
++++++ containers-systemd.spec ++++++
--- /var/tmp/diff_new_pack.MhVdex/_old  2020-02-20 14:55:54.498350217 +0100
+++ /var/tmp/diff_new_pack.MhVdex/_new  2020-02-20 14:55:54.502350226 +0100
@@ -20,7 +20,7 @@
 %define container_services container-bind.service 
container-dhcp-server.service container-dhcp6-server.service 
container-haproxy.service container-mariadb.service container-nginx.service
 
 Name:           containers-systemd
-Version:        0.0+git20200217.580c00f
+Version:        0.0+git20200219.a6acfd1
 Release:        0
 Summary:        Systemd service files and config files for openSUSE container
 License:        MIT

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.MhVdex/_old  2020-02-20 14:55:54.538350296 +0100
+++ /var/tmp/diff_new_pack.MhVdex/_new  2020-02-20 14:55:54.542350303 +0100
@@ -1,5 +1,5 @@
 <servicedata>
   <service name="tar_scm">
     <param 
name="url">git://github.com/kubic-project/containers-systemd.git</param>
- <param 
name="changesrevision">580c00f200d17fe0b391b87c41a7d9fdf66f8426</param></service>
+ <param 
name="changesrevision">a6acfd1c54fe6b58af3c35722fd60ce3afcaeef0</param></service>
 </servicedata>
\ No newline at end of file

++++++ containers-systemd-0.0+git20200217.580c00f.tar.xz -> 
containers-systemd-0.0+git20200219.a6acfd1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/containers-systemd-0.0+git20200217.580c00f/container-nginx.service 
new/containers-systemd-0.0+git20200219.a6acfd1/container-nginx.service
--- old/containers-systemd-0.0+git20200217.580c00f/container-nginx.service      
2020-02-17 22:05:38.000000000 +0100
+++ new/containers-systemd-0.0+git20200219.a6acfd1/container-nginx.service      
2020-02-19 15:56:10.000000000 +0100
@@ -11,7 +11,7 @@
 ExecStartPre=-/usr/bin/podman stop nginx
 ExecStartPre=-/usr/bin/podman rm nginx
 ExecStartPre=-/usr/bin/podman pull ${NGINX_IMAGE_PATH}
-ExecStart=/usr/bin/podman run --rm -v ${CONFIG_DIR}:/data -p 53:53/tcp -p 
443:443/tcp --name nginx ${NGINX_IMAGE_PATH}
+ExecStart=/bin/sh -c "/usr/bin/podman run --rm -v ${NGINX_CFG}:/etc/nginx -v 
${HTDOCS_DIR}:/srv/www/htdocs -p 80:80/tcp -p 443:443/tcp --name nginx 
${NGINX_IMAGE_PATH}"
 ExecStop=/usr/bin/podman stop -t 2 nginx
 
 [Install]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/containers-systemd-0.0+git20200217.580c00f/sysconfig.container-nginx 
new/containers-systemd-0.0+git20200219.a6acfd1/sysconfig.container-nginx
--- old/containers-systemd-0.0+git20200217.580c00f/sysconfig.container-nginx    
2020-02-17 22:05:38.000000000 +0100
+++ new/containers-systemd-0.0+git20200219.a6acfd1/sysconfig.container-nginx    
2020-02-19 15:56:10.000000000 +0100
@@ -4,11 +4,18 @@
 ## Default:    "registry.opensuse.org/opensuse/nginx:latest"
 #
 # Name of the image path to pull the nginx image from
-BIND_IMAGE_PATH=registry.opensuse.org/opensuse/nginxlatest
+NGINX_IMAGE_PATH=registry.opensuse.org/opensuse/nginx:latest
 
 ## Type:        string
-## Default:     "/srv/nginx"
+## Default:     "/srv/nginx/etc"
 #
-# Name of the path where the configuration and web pages will be stored
-CONFIG_DIR="/srv/nginx"
+# Name of the path where the configuration is stored
+NGINX_CFG="/srv/nginx/etc"
+
+
+## Type:        string
+## Default:     "/srv/nginx/htdocs"
+#
+# Name of the path where the web pages are stored
+HTDOCS_DIR="/srv/nginx/htdocs"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/containers-systemd-0.0+git20200217.580c00f/sysconfig.container-squid 
new/containers-systemd-0.0+git20200219.a6acfd1/sysconfig.container-squid
--- old/containers-systemd-0.0+git20200217.580c00f/sysconfig.container-squid    
2020-02-17 22:05:38.000000000 +0100
+++ new/containers-systemd-0.0+git20200219.a6acfd1/sysconfig.container-squid    
2020-02-19 15:56:10.000000000 +0100
@@ -12,6 +12,6 @@
 # Extra arguments for podman for the squid container
 # Possible additional entries (multiple are possible):
 # "-v /srv/squid/squid.cfg:/etc/squid/squid.cfg:ro"
-# "-v /srv/squid/cache:/var/cache/squid
+# "-v /srv/squid/cache:/var/cache/squid"
 PODMAN_SQUID_ARGS="-p 3128:3128"
 


Reply via email to