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
This commit is contained in:
Clayton Craft 2024-08-06 14:30:24 -07:00 committed by Oliver Smith
parent 58bdb46ef2
commit bb5dca5a42
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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