summaryrefslogtreecommitdiff
path: root/debian/postinst
blob: d622001c2aa3dd82f7bbf0c35fb0e4e10eea28d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

case "$1" in
configure)
	chown -R www-data: /var/lib/plinth /var/log/plinth
	;;
esac

#DEBHELPER#

exit 0