HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/lib/dpkg/info/dbus-system-bus-common.postinst
#!/bin/sh
# Copyright © 2003 Colin Walters <[email protected]>
# Copyright © 2006 Sjoerd Simons <[email protected]>

set -e

MESSAGEUSER=messagebus

in_sysroot () {
    if [ -z "${DPKG_ROOT:-}" ]; then
        "$@"
    else
        chroot "${DPKG_ROOT}" "$@"
    fi
}

if [ "$1" = configure ]; then
    in_sysroot adduser --system \
            --quiet \
            --home /nonexistent \
            --no-create-home \
            --disabled-password \
            --group "$MESSAGEUSER"
fi