4
我的繼承人,如果別人Ansible邏輯..ansible if else結構
- name: Check certs exist
stat: path=/etc/letsencrypt/live/{{ rootDomain }}/fullchain.pem
register: st
- include: ./_common/check-certs-renewable.yaml
when: st.stat.exists
- include: ./_common/create-certs.yaml
when: not st.stat.exists
此代碼歸結爲:
IF證書存在
更新證書
ELSE
創建證書
END IF
這是正確的做法還是有更好的方法來IF ELSE在ansible構建?