[Pkg-tcltk-commits] r1110 - openacs/trunk/debian
geox-guest at alioth.debian.org
geox-guest at alioth.debian.org
Mon Dec 13 11:52:08 UTC 2010
Author: geox-guest
Date: 2010-12-13 11:52:08 +0000 (Mon, 13 Dec 2010)
New Revision: 1110
Modified:
openacs/trunk/debian/changelog
openacs/trunk/debian/control
openacs/trunk/debian/postinst
Log:
Security fix and policy bumped.
Modified: openacs/trunk/debian/changelog
===================================================================
--- openacs/trunk/debian/changelog 2010-12-13 11:50:58 UTC (rev 1109)
+++ openacs/trunk/debian/changelog 2010-12-13 11:52:08 UTC (rev 1110)
@@ -1,3 +1,10 @@
+openacs (5.5.1+dfsg-3) unstable; urgency=low
+
+ * Policy bumped to 3.9.1 without changes.
+ * Removed recursive chown in postinst (see #606554).
+
+ -- Hector Romojaro <hromojaro at dia.uned.es> Mon, 13 Dec 2010 12:12:30 +0100
+
openacs (5.5.1+dfsg-2) unstable; urgency=high
* Fixed severe vulnerability in the api-browser: it was possible to pass
Modified: openacs/trunk/debian/control
===================================================================
--- openacs/trunk/debian/control 2010-12-13 11:50:58 UTC (rev 1109)
+++ openacs/trunk/debian/control 2010-12-13 11:52:08 UTC (rev 1110)
@@ -5,7 +5,7 @@
Uploaders: Francesco Paolo Lovergine <frankie at debian.org>
Build-Depends-Indep: po-debconf
Build-Depends: debhelper (>= 7), dpatch
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-tcltk/openacs/trunk
Vcs-Svn: svn://svn.debian.org/svn/pkg-tcltk/openacs/trunk
Homepage: http://www.openacs.org/
Modified: openacs/trunk/debian/postinst
===================================================================
--- openacs/trunk/debian/postinst 2010-12-13 11:50:58 UTC (rev 1109)
+++ openacs/trunk/debian/postinst 2010-12-13 11:52:08 UTC (rev 1110)
@@ -67,15 +67,15 @@
repository=/var/lib/openacs
if [ -d $repository ]; then
# set the owner and change rights accordingly
- chown -R www-data:www-data $repository
- chmod 0755 $repository
+ chown www-data:www-data $repository $repository/content-repository-content-files/
+ chmod 0755 $repository $repository/content-repository-content-files/
fi
# Care about the log directory
logdir=/var/log/aolserver4/openacs
if [ -d $logdir ]; then
# set the owner and change rights accordingly
- chown -R www-data:www-data $logdir
+ chown www-data:www-data $logdir
chmod 0755 $logdir
fi
More information about the Pkg-tcltk-commits
mailing list