Browse Source

fix(macos): gid must be numeric on macos

tags/v0.48.5
noelmcloughlin 4 years ago
parent
commit
9517e4b069
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      users/init.sls

+ 1
- 1
users/init.sls View File

@@ -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 %}

Loading…
Cancel
Save