From 7d02690e47a644615f04156922678cda211f6b7f Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Wed, 23 Apr 2014 09:13:27 +0200 Subject: [PATCH 1/4] Fix basic auth on SME9 --- root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/98Dl | 1 + 1 file changed, 1 insertion(+) diff --git a/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/98Dl b/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/98Dl index 0a13c01..de2e3dd 100644 --- a/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/98Dl +++ b/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/98Dl @@ -15,6 +15,7 @@ if ($authtype eq 'http'){ SSLRequireSSL on AuthName "dl" AuthType Basic + AuthBasicProvider external AuthExternal pwauth Require valid-user From a29afa4b7cbfabd2deb8a0e1443debad2d6bb3a4 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Wed, 23 Apr 2014 09:16:08 +0200 Subject: [PATCH 2/4] Spec file update --- smeserver-dl.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/smeserver-dl.spec b/smeserver-dl.spec index 01c55e7..53f56c0 100644 --- a/smeserver-dl.spec +++ b/smeserver-dl.spec @@ -1,10 +1,11 @@ %define name smeserver-dl -%define version 0.1.2 +%define version 0.1.3 %define release 1 Summary: sme server integration of dl Name: %{name} Version: %{version} Release: %{release}%{?dist} +Epoch: 9 License: GNU GPL version 2 URL: http://www.thregr.org/~wavexx/software/dl/ Group: SMEserver/addon @@ -21,6 +22,9 @@ Requires: smeserver-webapps-common smserver integration of dl %changelog +* Wed Apr 23 2014 Daniel Berteaud 0.1.3-1.sme +- Fix basic auth on SME9 + * Tue Feb 4 2014 Daniel Berteaud 0.1.2-1.sme - Grant admin privileges to the admin user From eba4367fc5b0b9c56617cf4ffbcba436e1bdbc88 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Tue, 31 May 2016 13:09:55 +0200 Subject: [PATCH 3/4] Fix cron job output --- root/etc/cron.daily/dl-expire | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/cron.daily/dl-expire b/root/etc/cron.daily/dl-expire index bc43b64..559b1d8 100644 --- a/root/etc/cron.daily/dl-expire +++ b/root/etc/cron.daily/dl-expire @@ -1,2 +1,2 @@ #!/bin/sh -su -s /bin/bash - -c "cd /usr/share/dl/include/scripts && /usr/bin/php ./expire.php" +su -s /bin/bash -c "cd /usr/share/dl/include/scripts && /usr/bin/php ./expire.php" From 1d7195efc1cf1d96fc08c45e1be5aa6df763b911 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Tue, 31 May 2016 13:11:45 +0200 Subject: [PATCH 4/4] Spec file update --- smeserver-dl.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/smeserver-dl.spec b/smeserver-dl.spec index 53f56c0..7097d5c 100644 --- a/smeserver-dl.spec +++ b/smeserver-dl.spec @@ -1,5 +1,5 @@ %define name smeserver-dl -%define version 0.1.3 +%define version 0.1.4 %define release 1 Summary: sme server integration of dl Name: %{name} @@ -22,6 +22,9 @@ Requires: smeserver-webapps-common smserver integration of dl %changelog +* Tue May 31 2016 Daniel Berteaud 0.1.4-1.sme +- Fix cron job output [SME: 9116] + * Wed Apr 23 2014 Daniel Berteaud 0.1.3-1.sme - Fix basic auth on SME9