Projects
Kolab:16:TestingLinked
kolab-autoconf
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 10
View file
debian.changelog
Changed
@@ -1,3 +1,9 @@ +kolab-autoconf (1.3.1-3) unstable; urgency=medium + + * Create log folder, install autodiscover apache configuration + + -- Daniel Hoffend <dh@dotlan.net> Fri, 31 Jan 2020 23:04:00 +0100 + kolab-autoconf (1.3.1-2) unstable; urgency=medium * Fix init_ldap()
View file
debian.tar.gz/dirs
Added
@@ -0,0 +1,1 @@ +var/log/kolab-autoconf
View file
debian.tar.gz/install
Changed
@@ -1,2 +1,3 @@ lib usr/share/kolab-autoconf public_html usr/share/kolab-autoconf +docs/kolab-autoconf.conf etc/apache2/sites-available
View file
debian.tar.gz/links
Added
@@ -0,0 +1,1 @@ +/var/log/kolab-autoconf usr/share/kolab-autoconf/logs
View file
debian.tar.gz/logrotate
Added
@@ -0,0 +1,8 @@ +/var/log/kolab-autoconf/console /var/log/kolab-autoconf/errors { + create 0640 www-data adm + compress + missingok + notifempty + rotate 52 + weekly +}
View file
debian.tar.gz/postinst
Added
@@ -0,0 +1,36 @@ +#!/bin/sh + +set -e + +#EXTRA# +#DEBHELPER# + +fixperms() { + chown -R www-data:adm \ + /var/log/kolab-autoconf + chmod 750 \ + /var/log/kolab-autoconf +} + +reload_apache() +{ + if apache2ctl configtest 2>/dev/null; then + invoke-rc.d apache2 $1 || true + else + echo "Your apache2 configuration is broken, so we're not restarting it for you." + fi +} + + +case "$1" in + configure) + fixperms + a2enmod rewrite > /dev/null || true + if -e "/etc/apache2/sites-available/kolab-autoconf.conf" -a ! -e "/etc/apache2/sites-enabled/kolab-autoconf.conf" ; then + a2ensite kolab-autoconf.conf + fi + reload_apache reload + ;; +esac + +exit 0
View file
debian.tar.gz/prerm
Added
@@ -0,0 +1,25 @@ +#!/bin/sh + +set -e + +#EXTRA# +#DEBHELPER# + +reload_apache() +{ + if apache2ctl configtest 2>/dev/null; then + invoke-rc.d apache2 $1 || true + else + echo "Your apache2 configuration is broken, so we're not restarting it for you." + fi +} + + +case "$1" in + remove) + a2dissite kolab-autoconf.conf > /dev/null || true + reload_apache restart + ;; +esac + +exit 0
View file
kolab-autoconf.dsc
Changed
@@ -2,7 +2,7 @@ Source: kolab-autoconf Binary: kolab-autoconf Architecture: all -Version: 1.3.1-2 +Version: 1.3.1-3 Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Uploaders: Tobias Brunner <tobias.brunner@vshn.ch> Homepage: http://www.kolab.org/
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.