Explorar el Código

Create a system usergroup if user is a system user

If the user to be created is a system user, it makes no sense to create
him a primary group which is not a system group too.
lookup-fix-3
Raphaël Hertzog hace 8 años
padre
commit
cf122d1bd6
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. +3
    -0
      users/init.sls

+ 3
- 0
users/init.sls Ver fichero

@@ -73,6 +73,9 @@ users_{{ name }}_user:
{%- elif 'uid' in user %}
- gid: {{ user['uid'] }}
{%- endif %}
{% if 'system' in user and user['system'] %}
- system: True
{% endif %}
user.present:
- name: {{ name }}
- home: {{ home }}

Cargando…
Cancelar
Guardar