Ver código fonte

gid: default to "null"

using `|json` would let the state get an error if gid is a string, as it would
not be converted.

Using directly the `None` yaml value, and letting numbers as string be
converted by yaml parser.
tags/v0.45.0
Adrien "ze" Urban 5 anos atrás
pai
commit
c128b1ea28
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      users/init.sls

+ 1
- 1
users/init.sls Ver arquivo

@@ -13,7 +13,7 @@ users_group_absent_{{ group }}:
users_group_present_{{ group }}:
group.present:
- name: {{ group }}
- gid: {{ setting.get('gid') }}
- gid: {{ setting.get('gid', "null") }}
- system: {{ setting.get('system',"False") }}
- members: {{ setting.get('members')|json }}
- addusers: {{ setting.get('addusers')|json }}

Carregando…
Cancelar
Salvar