소스 검색

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 년 전
부모
커밋
c128b1ea28
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      users/init.sls

+ 1
- 1
users/init.sls 파일 보기

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

Loading…
취소
저장