This file is indexed.

postinst is in mopidy 0.17.0-3.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

The actual contents of the file can be viewed below.

 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
52
#!/bin/sh
# postinst script for mopidy

set -e

case "$1" in
    configure)
        adduser --quiet --system --no-create-home --home /var/lib/mopidy --ingroup audio mopidy

        chown mopidy:audio /var/cache/mopidy
        chown mopidy:audio /var/lib/mopidy
        chown mopidy:audio /var/lib/mopidy/media
        chown mopidy:audio /var/lib/mopidy/playlists
        chown mopidy:audio /var/log/mopidy

        # mopidy.conf may contain passwords and other confidential information
        chown mopidy:root /etc/mopidy/mopidy.conf
        chmod 640 /etc/mopidy/mopidy.conf
        ;;

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

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


# Automatically added by dh_python2:
if which pycompile >/dev/null 2>&1; then
	pycompile -p mopidy /usr/share/mopidy -V 2.7-
fi

# End automatically added section
# Automatically added by dh_installinit
if [ -x "/etc/init.d/mopidy" ] || [ -e "/etc/init/mopidy.conf" ]; then
	if [ ! -e "/etc/init/mopidy.conf" ]; then
		update-rc.d mopidy defaults >/dev/null
	fi
	invoke-rc.d mopidy start || exit $?
fi
# End automatically added section
# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
	update-menus
fi
# End automatically added section


exit 0