sysusers.generate-pre: indentation

rhel-only

Resolves: #2217149
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2021-05-31 13:45:35 +02:00 committed by Christian Glombek
parent 36f2f948cd
commit 42b42fd61e

View File

@ -39,11 +39,11 @@ group() {
group="$1"
gid="$2"
if [ "$gid" = '-' ]; then
cat <<EOF
cat <<-EOF
getent group '$group' >/dev/null || groupadd -r '$group'
EOF
else
cat <<EOF
cat <<-EOF
getent group '$group' >/dev/null || groupadd -f -g '$gid' -r '$group'
EOF
fi