File: doodle.postinst

package info (click to toggle)
doodle 0.7.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,380 kB
  • sloc: ansic: 7,704; sh: 5,092; java: 152; makefile: 146; sed: 16
file content (51 lines) | stat: -rwxr-xr-x 773 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/sh

CRON="/etc/cron.daily/doodle"

set -e

case "${1}" in
	configure)
		if ! getent group doodle > /dev/null 2>&1
		then
			groupadd --system doodle
		fi

		chown root:doodle /usr/bin/doodle
		chmod g+s /usr/bin/doodle

		if [ ! -d /var/lib/doodle ]
		then
			mkdir -p /var/lib/doodle
		fi

		chown root:doodle /var/lib/doodle -R
		chmod 0750 /var/lib/doodle

		if [ -e /var/lib/doodle/doodle.db ]
		then
			chmod 0660 /var/lib/doodle/doodle.db
		else

cat << EOF

WARNING: You should run '${CRON}' as root. doodle will not work
properly until you do or until it is run by cron (it is daily).
EOF

		fi
		;;

	abort-upgrade|abort-remove|abort-deconfigure)

		;;

	*)
		echo "postinst called with unknown argument \`${1}'" >&2
		exit 1
		;;
esac

#DEBHELPER#

exit 0