Skip to content

Commit

Permalink
fix(macos): gid must be numeric on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmcloughlin committed Jul 25, 2020
1 parent 4c414f3 commit 9517e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion users/init.sls
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ users_{{ name }}_user:
- gid: {{ user['prime_group']['gid'] }}
{% elif 'prime_group' in user and 'name' in user['prime_group'] %}
- gid: {{ user['prime_group']['name'] }}
{% else -%}
{% elif grains.os != 'MacOS' -%}
- gid: {{ name }}
{% endif -%}
{% if 'fullname' in user %}
Expand Down

0 comments on commit 9517e4b

Please sign in to comment.