Selaa lähdekoodia

module.showconf: configure hide_keys

tags/v0.9
Maximilian Eschenbacher 6 vuotta sitten
vanhempi
commit
c0ec3d2d1c
1 muutettua tiedostoa jossa 3 lisäystä ja 2 poistoa
  1. +3
    -2
      _modules/wireguard.py

+ 3
- 2
_modules/wireguard.py Näytä tiedosto

@@ -32,8 +32,9 @@ def show(name=None, peer=None):
else:
return _wg_ifaces().get(name)

def showconf(name):
return __salt__['cmd.run']('wg showconf %s' % (name,))
def showconf(name, hide_keys=True):
return __salt__['cmd.run']('wg showconf %s' % (name,),
env={'WG_HIDE_KEYS': 'always' if hide_keys else 'never'})

def set(name, listen_port=None, fwmark=None, private_key=None, peer=None,
preshared_key=None, endpoint=None, persistent_keepalive=None,

Loading…
Peruuta
Tallenna