This file is indexed.

postinst is in radosgw-agent 1.2.7-0ubuntu1.

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 -e

# can be removed after systemd migration
DEFAULT_FILE=/etc/default/radosgw-agent
if [ -f ${DEFAULT_FILE}.enable ]; then
    deb-systemd-helper enable radosgw-agent.service >/dev/null || true
    if [ -d /run/systemd/system ]; then
        systemctl daemon-reload || true
        deb-systemd-invoke start radosgw-agent.service >/dev/null || true
    fi
    sed -i 's/manual//' /etc/init/radosgw-agent.override 2>/dev/null || true
    if [ `stat -c%s /etc/init/radosgw-agent.override` -eq 0 ]; then
        rm -f /etc/init/radosgw-agent.override
    fi
    rm -f ${DEFAULT_FILE}.enable
else
    # as we don't have any daemon-reload run done (due to --no-enable --no-start), do it now
    [ -d /run/systemd/system ] && systemctl daemon-reload || true
fi


# Automatically added by dh_python2:
if which pycompile >/dev/null 2>&1; then
	pycompile -p radosgw-agent 
fi

# End automatically added section
# Automatically added by dh_systemd_enable
if deb-systemd-helper debian-installed radosgw-agent.service; then
	# This will only remove masks created by d-s-h on package removal.
	deb-systemd-helper unmask radosgw-agent.service >/dev/null || true

	if deb-systemd-helper --quiet was-enabled radosgw-agent.service; then
		# Create new symlinks, if any.
		deb-systemd-helper enable radosgw-agent.service >/dev/null || true
	fi
fi

# Update the statefile to add new symlinks (if any), which need to be cleaned
# up on purge. Also remove old symlinks.
deb-systemd-helper update-state radosgw-agent.service >/dev/null || true
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
	if [ -x "/etc/init.d/radosgw-agent" ]; then
		update-rc.d radosgw-agent defaults >/dev/null || exit $?
	fi
fi
# End automatically added section
# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/default/radosgw-agent 1.1-0ubuntu2~ -- "$@"
# End automatically added section