Ver código fonte

state: peer_present: shorten source lines

tags/v0.9
Maximilian Eschenbacher 6 anos atrás
pai
commit
433689ebc1
1 arquivos alterados com 4 adições e 3 exclusões
  1. +4
    -3
      _states/wireguard.py

+ 4
- 3
_states/wireguard.py Ver arquivo

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

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

if persistent_keepalive and show.get('persistent keepalive', None).startswith('every %s second' % (persistent_keepalive,)):
if persistent_keepalive and show.get('persistent keepalive', '').startswith('every %s second' % (persistent_keepalive,)):
__salt__['wg.set'](interface, peer=name,
persistent_keepalive=persistent_keepalive)
ret['changes']['persistent keepalive'] = 'persistent keepalive changed.'

Carregando…
Cancelar
Salvar