From 99e58d55b4f552702d6737ec336c694d201820c6 Mon Sep 17 00:00:00 2001 From: tmaeno Date: Mon, 14 Nov 2022 11:25:51 +0100 Subject: [PATCH 1/2] added maxWorkersForZip in shared_file_messenger.py --- Dockerfile | 3 ++- pandaharvester/panda_pkg_info.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f17c6f8f..53159e54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM docker.io/centos:7 RUN yum update -y RUN yum install -y epel-release -RUN yum install -y python3 python3-devel gcc less git mysql-devel curl mariadb voms-clients-cpp wget httpd +RUN yum install -y python3 python3-devel gcc less git mysql-devel curl mariadb voms-clients-cpp wget httpd logroate RUN mkdir -p /data/condor; cd /data/condor; \ curl -fsSL https://get.htcondor.org | /bin/bash -s -- --download --channel stable; \ @@ -59,6 +59,7 @@ RUN chmod -R 777 /data/harvester RUN chmod -R 777 /data/condor RUN chmod -R 777 /etc/httpd RUN chmod -R 777 /var/log/httpd +RUN chmod -R 777 /var/lib/logrotate RUN mkdir -p /opt/harvester/etc/queue_config && chmod 777 /opt/harvester/etc/queue_config COPY docker/httpd.conf /etc/httpd/conf/ diff --git a/pandaharvester/panda_pkg_info.py b/pandaharvester/panda_pkg_info.py index 13fa73ff..34bc1136 100644 --- a/pandaharvester/panda_pkg_info.py +++ b/pandaharvester/panda_pkg_info.py @@ -1 +1 @@ -release_version = "0.2.18" +release_version = "0.2.19" From e482558480a5d9800578d85f40c126593bee6242 Mon Sep 17 00:00:00 2001 From: tmaeno Date: Mon, 14 Nov 2022 11:35:15 +0100 Subject: [PATCH 2/2] logrotate --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 53159e54..2fc79ce8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM docker.io/centos:7 RUN yum update -y RUN yum install -y epel-release -RUN yum install -y python3 python3-devel gcc less git mysql-devel curl mariadb voms-clients-cpp wget httpd logroate +RUN yum install -y python3 python3-devel gcc less git mysql-devel curl mariadb voms-clients-cpp wget httpd logrotate RUN mkdir -p /data/condor; cd /data/condor; \ curl -fsSL https://get.htcondor.org | /bin/bash -s -- --download --channel stable; \