Hello community, here is the log from the commit of package containers-systemd for openSUSE:Factory checked in at 2020-02-18 10:42:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/containers-systemd (Old) and /work/SRC/openSUSE:Factory/.containers-systemd.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "containers-systemd" Tue Feb 18 10:42:37 2020 rev:7 rq:775002 version:0.0+git20200217.580c00f Changes: -------- --- /work/SRC/openSUSE:Factory/containers-systemd/containers-systemd.changes 2020-02-13 10:13:06.332395298 +0100 +++ /work/SRC/openSUSE:Factory/.containers-systemd.new.26092/containers-systemd.changes 2020-02-18 10:43:07.197276820 +0100 @@ -1,0 +2,6 @@ +Mon Feb 17 21:06:26 UTC 2020 - [email protected] + +- Update to version 0.0+git20200217.580c00f: + * Add squid + +------------------------------------------------------------------- Old: ---- containers-systemd-0.0+git20200212.47b21c6.tar.xz New: ---- containers-systemd-0.0+git20200217.580c00f.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ containers-systemd.spec ++++++ --- /var/tmp/diff_new_pack.uemcQz/_old 2020-02-18 10:43:08.129278721 +0100 +++ /var/tmp/diff_new_pack.uemcQz/_new 2020-02-18 10:43:08.137278738 +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+git20200212.47b21c6 +Version: 0.0+git20200217.580c00f Release: 0 Summary: Systemd service files and config files for openSUSE container License: MIT ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.uemcQz/_old 2020-02-18 10:43:08.213278893 +0100 +++ /var/tmp/diff_new_pack.uemcQz/_new 2020-02-18 10:43:08.217278901 +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">47b21c6f0aecd599c52660012a00fcfd973b8b3e</param></service> + <param name="changesrevision">580c00f200d17fe0b391b87c41a7d9fdf66f8426</param></service> </servicedata> \ No newline at end of file ++++++ containers-systemd-0.0+git20200212.47b21c6.tar.xz -> containers-systemd-0.0+git20200217.580c00f.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/containers-systemd-0.0+git20200212.47b21c6/README.md new/containers-systemd-0.0+git20200217.580c00f/README.md --- old/containers-systemd-0.0+git20200212.47b21c6/README.md 2020-02-12 16:24:23.000000000 +0100 +++ new/containers-systemd-0.0+git20200217.580c00f/README.md 2020-02-17 22:05:38.000000000 +0100 @@ -10,6 +10,7 @@ * haproxy * mariadb * nginx + * squid ## bind @@ -36,3 +37,8 @@ ## nginx * /etc/sysconfig/container-nginx contains generic settings + +## squid + + * /etc/sysconfig/container-squid contains generic settings + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/containers-systemd-0.0+git20200212.47b21c6/container-squid.service new/containers-systemd-0.0+git20200217.580c00f/container-squid.service --- old/containers-systemd-0.0+git20200212.47b21c6/container-squid.service 1970-01-01 01:00:00.000000000 +0100 +++ new/containers-systemd-0.0+git20200217.580c00f/container-squid.service 2020-02-17 22:05:38.000000000 +0100 @@ -0,0 +1,16 @@ +[Unit] +Description=openSUSE squid container +Documentation=https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-squid-image +After=network-online.target + +[Service] +TimeoutStartSec=0 +Restart=always +EnvironmentFile=/etc/sysconfig/container-squid +ExecStartPre=-/usr/bin/podman stop squid +ExecStartPre=-/usr/bin/podman rm squid +ExecStartPre=-/usr/bin/podman pull ${SQUID_IMAGE_PATH} +ExecStart=/bin/sh -c "/usr/bin/podman run --rm ${PODMAN_SQUID_ARGS} --name squid ${SQUID_IMAGE_PATH}" + +[Install] +WantedBy=multi-user.target diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/containers-systemd-0.0+git20200212.47b21c6/sysconfig.container-squid new/containers-systemd-0.0+git20200217.580c00f/sysconfig.container-squid --- old/containers-systemd-0.0+git20200212.47b21c6/sysconfig.container-squid 1970-01-01 01:00:00.000000000 +0100 +++ new/containers-systemd-0.0+git20200217.580c00f/sysconfig.container-squid 2020-02-17 22:05:38.000000000 +0100 @@ -0,0 +1,17 @@ +## Path: Container/squid +## Description: Settings for squid container +## Type: string +## Default: "registry.opensuse.org/opensuse/squid:latest" +# +# Name of the image path to pull the bind image from +SQUID_IMAGE_PATH=registry.opensuse.org/opensuse/squid:latest + +## Type: string +## Default: "-p 3128:3128" +# +# 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 +PODMAN_SQUID_ARGS="-p 3128:3128" +
