From bb5dca5a42ea4cc6bf3dd859d9f8c7bd9515f0ba Mon Sep 17 00:00:00 2001 From: Clayton Craft Date: Tue, 6 Aug 2024 14:30:24 -0700 Subject: [PATCH] systemd/systemd: fix typo in pre-install (MR 5468) (MR 5563) The space here caused this install script to attempt to create a group named '2' and add a user named 'sgx' to it. [ci:skip-build] already built successfully in CI --- extra-repos/systemd/systemd/APKBUILD | 2 +- extra-repos/systemd/systemd/systemd.pre-install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extra-repos/systemd/systemd/APKBUILD b/extra-repos/systemd/systemd/APKBUILD index f551c37d0..c3ad018cd 100644 --- a/extra-repos/systemd/systemd/APKBUILD +++ b/extra-repos/systemd/systemd/APKBUILD @@ -5,7 +5,7 @@ pkgname=systemd pkgver=256 _pkgver="musl-v${pkgver//_/-}" -pkgrel=1 +pkgrel=2 pkgdesc="System and service manager" url="https://github.com/systemd/systemd" arch="all !ppc64le !armhf !s390x" # blocked by pmboostrap not supporting diff --git a/extra-repos/systemd/systemd/systemd.pre-install b/extra-repos/systemd/systemd/systemd.pre-install index 2a966b38b..26242579d 100644 --- a/extra-repos/systemd/systemd/systemd.pre-install +++ b/extra-repos/systemd/systemd/systemd.pre-install @@ -7,6 +7,6 @@ adduser -S -H -D -h / -s /usr/sbin/nologin -g 'systemd Core Dumper' systemd-core addgroup -S systemd-network 2>/dev/null addgroup -S systemd-journal 2>/dev/null addgroup -S render 2>/dev/null -addgroup -S sgx 2 >/dev/null +addgroup -S sgx 2>/dev/null exit 0