[Dev] Do not display getent output in deployer service

This commit is contained in:
samuel 2023-05-09 14:18:47 +02:00
parent a51c1f3d46
commit cde881f1b8
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ main() (
fail "Variable runner_deployer_username is empty." \
"${err_runner_deployer_groupname_empty}"
fi
if ! getent group "${runner_deployer_groupname}"; then
if ! getent group "${runner_deployer_groupname}" >/dev/null; then
fail "Runner-deployer group '${runner_deployer_groupname}' does not exist." \
"${err_runner_deployer_group_not_exist}"
fi