diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2021-08-20 11:30:54 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2021-08-20 11:31:43 +0200 |
commit | 3862ae443098470245bfa0ffc88b7f7992320039 (patch) | |
tree | 67dbe3be7776b9776632b2e0c917ec691e9a5a8d | |
parent | ec6cbb28d2867407af7694cd2ef93cfa31a7608c (diff) |
Fix the owner and the group of the directory /var/lib/mailgraph/
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/mailgraph.docs | 3 | ||||
-rw-r--r-- | debian/mailgraph.postinst | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index df99cce..02629c5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ mailgraph (1.14-18) UNRELEASED; urgency=medium * debian/control: - Add ${misc:Pre-Depends}. * Rename NEWS.Debian to NEWS (thanks to lintian). + * Fix the owner and the group of the directory /var/lib/mailgraph/ + (Closes: #927017). Thanks to Michael Krieger <phyre@rogers.com>. -- Jörg Frings-Fürst <debian@jff.email> Thu, 18 Jul 2019 20:31:13 +0200 diff --git a/debian/mailgraph.docs b/debian/mailgraph.docs index 74728e1..8d623c0 100644 --- a/debian/mailgraph.docs +++ b/debian/mailgraph.docs @@ -1,3 +1,4 @@ README debian/README.fetchmail -debian/NEWS.Debian +debian/README.source +debian/README.Debian diff --git a/debian/mailgraph.postinst b/debian/mailgraph.postinst index 4b73ef3..4c45aa9 100644 --- a/debian/mailgraph.postinst +++ b/debian/mailgraph.postinst @@ -36,6 +36,7 @@ case "$1" in ucf --debconf-ok ${tempfile} /etc/default/mailgraph ucfr mailgraph /etc/default/mailgraph rm -f ${tempfile} + chown -R www-data:www-data /var/lib/mailgraph/ ;; abort-upgrade|abort-remove|abort-deconfigure) |