[__group] fix --gid on freebsd

This commit is contained in:
ander 2020-05-22 02:31:38 +03:00
parent f354d80308
commit bf25a18a04
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ if [ "$state" = "present" ]; then
fi
done
if [ "$os" = "freebsd" ]; then
echo pw groupadd "$@" "$name"
echo pw groupadd "$name" "$@"
else
echo groupadd "$@" "$name"
fi