This file is indexed.

postinst is in systemd-journal-remote 229-4ubuntu4.

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
#!/bin/sh

set -e

adduser --quiet --system \
        --home /run/systemd --no-create-home \
        --gecos "systemd Journal Gateway" \
        --group systemd-journal-gateway

adduser --quiet --system \
        --home /run/systemd --no-create-home \
        --gecos "systemd Journal Remote" \
        --group systemd-journal-remote

adduser --quiet --system \
        --home /run/systemd --no-create-home \
        --gecos "systemd Journal Upload" \
        --group systemd-journal-upload

# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
	# In case this system is running systemd, we need to ensure that all
	# necessary tmpfiles (if any) are created before starting.
	if [ -d /run/systemd/system ] ; then
		systemd-tmpfiles --create /usr/lib/tmpfiles.d/systemd-remote.conf >/dev/null || true
	fi
fi
# End automatically added section