소스 검색

states: peer_present: set endpoint

tags/v1.0
Maximilian Eschenbacher 6 년 전
부모
커밋
d0f7c3963c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      _states/wireguard.py

+ 1
- 1
_states/wireguard.py 파일 보기

@@ -80,7 +80,7 @@ def peer_present(name, interface, endpoint=None, persistent_keepalive=None,
ret['result'] = True
return ret

if show.get('endpoint') and endpoint and show.get('endpoint') != endpoint:
if endpoint and show.get('endpoint', '') != endpoint:
__salt__['wg.set'](interface, peer=name, endpoint=endpoint)
ret['changes']['endpoint'] = dict(
old=show.get('endpoint'), new=endpoint)

Loading…
취소
저장