sysusers.generate-pre: indentation

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2021-05-31 13:45:35 +02:00
parent b5ae705da9
commit 1575061001

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