File debian.owncloud-config-apache.preinst of Package owncloud
#!/bin/sh -e # preinst script for owncloud-config-apache # https://github.com/owncloud/core/issues/13392 # https://github.com/owncloud/core/issues/14610 f=/etc/apache2/conf-available/owncloud.conf; test -e $f && dpkg-divert $f || true f=/etc/apache2/conf.d/owncloud.conf; test -f $f && mv $f $f.old || true exit 0