소스 검색

Fix Undefined jinja variable error with Salt 0.17.1

Ran into an error with Salt version 0.17.1:
Rendering SLS users failed, render error: Undefined jinja variable; line 32

After finding https://github.com/saltstack/salt/issues/8245, and working on
line 32, I surmised that line 28 might be the actual cause of the issue.

I just added a quick check to see if uid exists in user, just as the user uid
line does.
tags/v0.45.0
Ryan Billington 11 년 전
부모
커밋
547db95d62
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      users/init.sls

+ 2
- 0
users/init.sls 파일 보기

@@ -25,7 +25,9 @@ include:
- group: {{ name }}
group.present:
- name: {{ name }}
{% if 'uid' in user -%}
- gid: {{ user['uid'] }}
{% endif %}
user.present:
- name: {{ name }}
- home: {{ home }}

Loading…
취소
저장