PN: systemd
PE: 1
PV: 250.14
PR: r0
PKGE: 1
PKGV: 250.14
PKGR: r0.14
LICENSE: GPL-2.0-only & LGPL-2.1-only
DESCRIPTION: systemd is a system and service manager for Linux, compatible with SysV and LSB init scripts. systemd provides aggressive parallelization capabilities, uses socket and D-Bus activation for starting services, offers on-demand starting of daemons, keeps track of processes using Linux cgroups, supports snapshotting and restoring of the system state, maintains mount and automount points and implements an elaborate transactional dependency-based service control logic. It can work as a drop-in replacement for sysvinit.
SUMMARY: A System and service manager
RDEPENDS:systemd-extra-utils: base-files base-passwd shadow glibc (>= 2.35) libsystemd-shared (>= 250.14)
SECTION: base/shell
PKG:systemd-extra-utils: systemd-extra-utils
FILES:systemd-extra-utils:                         /usr/bin/systemd-escape                         /usr/bin/systemd-inhibit                         /usr/bin/systemd-detect-virt                         /usr/bin/systemd-dissect                         /usr/bin/systemd-path                         /usr/bin/systemd-run                         /usr/bin/systemd-cat                         /usr/bin/systemd-delta                         /usr/bin/systemd-cgls                         /usr/bin/systemd-cgtop                         /usr/bin/systemd-stdio-bridge                         /usr/bin/systemd-sysext                         /usr/bin/systemd-ask-password                         /usr/bin/systemd-tty-ask-password-agent                         /usr/lib/systemd/system/systemd-ask-password-console.path                         /usr/lib/systemd/system/systemd-ask-password-console.service                         /usr/lib/systemd/system/systemd-ask-password-wall.path                         /usr/lib/systemd/system/systemd-ask-password-wall.service                         /usr/lib/systemd/system/sysinit.target.wants/systemd-ask-password-console.path                         /usr/lib/systemd/system/sysinit.target.wants/systemd-ask-password-wall.path                         /usr/lib/systemd/system/multi-user.target.wants/systemd-ask-password-wall.path                         /usr/lib/systemd/systemd-resolve-host                         /usr/lib/systemd/systemd-ac-power                         /usr/lib/systemd/systemd-activate                         /usr/lib/systemd/systemd-bus-proxyd                         /usr/lib/systemd/system/systemd-bus-proxyd.service                         /usr/lib/systemd/system/systemd-bus-proxyd.socket                         /usr/lib/systemd/systemd-socket-proxyd                         /usr/lib/systemd/systemd-reply-password                         /usr/lib/systemd/systemd-sleep                         /usr/lib/systemd/system-sleep                         /usr/lib/systemd/system/systemd-hibernate.service                         /usr/lib/systemd/system/systemd-hybrid-sleep.service                         /usr/lib/systemd/system/systemd-suspend.service                         /usr/lib/systemd/system/sleep.target                         /usr/lib/systemd/systemd-initctl                         /usr/lib/systemd/system/systemd-initctl.service                         /usr/lib/systemd/system/systemd-initctl.socket                         /usr/lib/systemd/system/sockets.target.wants/systemd-initctl.socket                         /usr/lib/systemd/system-generators/systemd-gpt-auto-generator                         /usr/lib/systemd/systemd-cgroups-agent 
FILES_INFO:systemd-extra-utils: {"/usr/bin/systemd-ask-password": 14512, "/usr/bin/systemd-cat": 14392, "/usr/bin/systemd-cgls": 18592, "/usr/bin/systemd-cgtop": 30816, "/usr/bin/systemd-delta": 22576, "/usr/bin/systemd-detect-virt": 14384, "/usr/bin/systemd-dissect": 39128, "/usr/bin/systemd-escape": 18480, "/usr/bin/systemd-inhibit": 18504, "/usr/bin/systemd-path": 14384, "/usr/bin/systemd-run": 59720, "/usr/bin/systemd-stdio-bridge": 14400, "/usr/bin/systemd-sysext": 34992, "/usr/bin/systemd-tty-ask-password-agent": 26688, "/usr/lib/systemd/system-generators/systemd-gpt-auto-generator": 26616, "/usr/lib/systemd/system/multi-user.target.wants/systemd-ask-password-wall.path": 33, "/usr/lib/systemd/system/sleep.target": 468, "/usr/lib/systemd/system/sockets.target.wants/systemd-initctl.socket": 25, "/usr/lib/systemd/system/sysinit.target.wants/systemd-ask-password-console.path": 36, "/usr/lib/systemd/system/systemd-ask-password-console.path": 727, "/usr/lib/systemd/system/systemd-ask-password-console.service": 745, "/usr/lib/systemd/system/systemd-ask-password-wall.path": 652, "/usr/lib/systemd/system/systemd-ask-password-wall.service": 747, "/usr/lib/systemd/system/systemd-hibernate.service": 555, "/usr/lib/systemd/system/systemd-hybrid-sleep.service": 576, "/usr/lib/systemd/system/systemd-initctl.service": 578, "/usr/lib/systemd/system/systemd-initctl.socket": 553, "/usr/lib/systemd/system/systemd-suspend.service": 556, "/usr/lib/systemd/systemd-ac-power": 10288, "/usr/lib/systemd/systemd-cgroups-agent": 10216, "/usr/lib/systemd/systemd-initctl": 18480, "/usr/lib/systemd/systemd-reply-password": 10216, "/usr/lib/systemd/systemd-sleep": 22576, "/usr/lib/systemd/systemd-socket-proxyd": 26696}
pkg_preinst:systemd-extra-utils: #!/bin/sh\nset -e\nbbnote () {\n\techo "NOTE: $*"\n}\nbbwarn () {\n\techo "WARNING: $*"\n}\nbbfatal () {\n\techo "ERROR: $*"\n\texit 1\n}\nperform_groupadd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "systemd: Performing groupadd with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ print $NF }'`\n\tlocal group_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\tif test "x$group_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupadd \\$opts\\" || true\n\t\tgroup_exists="`grep "^$groupname:" $rootdir/etc/group || true`"\n\t\tif test "x$group_exists" = "x"; then\n\t\t\tbbfatal "systemd: groupadd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "systemd: group $groupname already exists, not re-creating it"\n\tfi\n}\nperform_useradd () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "systemd: Performing useradd with [$opts]"\n\tlocal username=`echo "$opts" | awk '{ print $NF }'`\n\tlocal user_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\tif test "x$user_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c  \\"$PSEUDO useradd \\$opts\\" || true\n\t\tuser_exists="`grep "^$username:" $rootdir/etc/passwd || true`"\n\t\tif test "x$user_exists" = "x"; then\n\t\t\tbbfatal "systemd: useradd command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "systemd: user $username already exists, not re-creating it"\n\tfi\n}\nperform_groupmems () {\n\tlocal rootdir="$1"\n\tlocal opts="$2"\n\tbbnote "systemd: Performing groupmems with [$opts]"\n\tlocal groupname=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-g" || $i == "--group") print $(i+1) }'`\n\tlocal username=`echo "$opts" | awk '{ for (i = 1; i < NF; i++) if ($i == "-a" || $i == "--add") print $(i+1) }'`\n\tbbnote "systemd: Running groupmems command with group $groupname and user $username"\n\tlocal mem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*$" $rootdir/etc/group || true`"\n\tif test "x$mem_exists" = "x"; then\n\t\teval flock -x $rootdir/etc -c \\"$PSEUDO groupmems \\$opts\\" || true\n\t\tmem_exists="`grep "^$groupname:[^:]*:[^:]*:\\([^,]*,\\)*$username\\(,[^,]*\\)*$" $rootdir/etc/group || true`"\n\t\tif test "x$mem_exists" = "x"; then\n\t\t\tbbfatal "systemd: groupmems command did not succeed."\n\t\tfi\n\telse\n\t\tbbnote "systemd: group $groupname already contains $username, not re-adding it"\n\tfi\n}\nOPT=""\nSYSROOT=""\n\nif test "x$D" != "x"; then\n\t# Installing into a sysroot\n\tSYSROOT="$D"\n\tOPT="--root $D"\n\n\t# Make sure login.defs is there, this is to make debian package backend work\n\t# correctly while doing rootfs.\n\t# The problem here is that if /etc/login.defs is treated as a config file for\n\t# shadow package, then while performing preinsts for packages that depend on\n\t# shadow, there might only be /etc/login.def.dpkg-new there in root filesystem.\n\tif [ ! -e $D/etc/login.defs -a -e $D/etc/login.defs.dpkg-new ]; then\n\t    cp $D/etc/login.defs.dpkg-new $D/etc/login.defs\n\tfi\n\n\t# user/group lookups should match useradd/groupadd --root\n\texport PSEUDO_PASSWD="$SYSROOT"\nfi\n\n# If we're not doing a special SSTATE/SYSROOT install\n# then set the values, otherwise use the environment\nif test "x$UA_SYSROOT" = "x"; then\n\t# Installing onto a target\n\t# Add groups and users defined only for this package\n\tGROUPADD_PARAM="--gid 995 systemd-bus-proxy"\n\tUSERADD_PARAM="--home-dir / --gid 995 --no-create-home --system --shell /sbin/nologin --uid 995 systemd-bus-proxy"\n\tGROUPMEMS_PARAM=""\nfi\n\n# Perform group additions first, since user additions may depend\n# on these groups existing\nif test "x`echo $GROUPADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupadd commands..."\n\t# Invoke multiple instances of groupadd for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupadd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $USERADD_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running useradd commands..."\n\t# Invoke multiple instances of useradd for parameter lists\n\t# separated by ';'\n\topts=`echo "$USERADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$USERADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_useradd "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n\nif test "x`echo $GROUPMEMS_PARAM | tr -d '[:space:]'`" != "x"; then\n\techo "Running groupmems commands..."\n\t# Invoke multiple instances of groupmems for parameter lists\n\t# separated by ';'\n\topts=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\tremaining=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\twhile test "x$opts" != "x"; do\n\t\tperform_groupmems "$SYSROOT" "$OPT $opts"\n\t\tif test "x$opts" = "x$remaining"; then\n\t\t\tbreak\n\t\tfi\n\t\topts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \\t]*$##'`\n\t\tremaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \\t]*$##'`\n\tdone\nfi\n
FILERDEPENDSFLIST:systemd-extra-utils: /usr/bin/systemd-ask-password /usr/bin/systemd-cat /usr/bin/systemd-cgls /usr/bin/systemd-cgtop /usr/bin/systemd-delta /usr/bin/systemd-detect-virt /usr/bin/systemd-dissect /usr/bin/systemd-escape /usr/bin/systemd-inhibit /usr/bin/systemd-path /usr/bin/systemd-run /usr/bin/systemd-stdio-bridge /usr/bin/systemd-sysext /usr/bin/systemd-tty-ask-password-agent /usr/lib/systemd/system-generators/systemd-gpt-auto-generator /usr/lib/systemd/systemd-ac-power /usr/lib/systemd/systemd-cgroups-agent /usr/lib/systemd/systemd-initctl /usr/lib/systemd/systemd-reply-password /usr/lib/systemd/systemd-sleep /usr/lib/systemd/systemd-socket-proxyd
FILERDEPENDS:/usr/bin/systemd-ask-password:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-cat:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.28)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-cgls:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-cgtop:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-delta:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-detect-virt:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-dissect:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-escape:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-inhibit:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.28)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-path:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-run:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.28)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-stdio-bridge:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-sysext:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.33)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/bin/systemd-tty-ask-password-agent:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.33)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.25)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/systemd/system-generators/systemd-gpt-auto-generator:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/systemd/systemd-ac-power:systemd-extra-utils:  libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/systemd/systemd-cgroups-agent:systemd-extra-utils:  libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/systemd/systemd-initctl:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/systemd/systemd-reply-password:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.25)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/systemd/systemd-sleep:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
FILERDEPENDS:/usr/lib/systemd/systemd-socket-proxyd:systemd-extra-utils:  ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libsystemd-shared-250.so(SD_SHARED)(64bit) libc.so.6(GLIBC_2.28)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.17)(64bit) libsystemd-shared-250.so()(64bit) libc.so.6()(64bit) ld-linux-aarch64.so.1()(64bit) rtld(GNU_HASH)
PKGSIZE:systemd-extra-utils: 472907
