File: postinst

package info (click to toggle)
phpwebcounter 1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 256 kB
  • sloc: php: 61; sh: 43; makefile: 4
file content (16 lines) | stat: -rwxr-xr-x 238 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# postinst script for phpwebcounter

set -eu

if [ "$1" = "configure" ]; then

	if ! dpkg-statoverride --list /var/lib/phpwebcounter >/dev/null; then
		chown www-data:www-data /var/lib/phpwebcounter
	fi

fi

#DEBHELPER#

exit 0