This file is indexed.

postinst is in atop 1.26-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
#!/bin/sh

# Automatically added by dh_installinit
if [ -x "/etc/init.d/atop" ]; then
	update-rc.d atop defaults >/dev/null
	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
		invoke-rc.d atop start || exit $?
	else
		/etc/init.d/atop start || exit $?
	fi
fi
# End automatically added section


# always begin new logfile on update
LOGROTATE="/etc/logrotate.d/atop"

if [ -f $LOGROTATE ] && [ -f /usr/sbin/logrotate ]; then
	/usr/sbin/logrotate -f $LOGROTATE
fi