Browse Source

Automatically Generate Private Key

Allow Wireguard to automatically generate a private key if an
interface doesn't have one and private_key is set to auto. This
allows for auto key generation and distribution if using salt mines.
master
Nate Bohman 6 years ago
parent
commit
70c5f41ce9
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      _states/wireguard.py

+ 6
- 0
_states/wireguard.py View File

new=fwmark, new=fwmark,
) )


if private_key == 'auto':
private_key = show.get('private key')
if private_key is None:
private_key = __salt__['wg.genkey']()
ret['changes']['private key'] = 'private key generated.'

if show.get('private key') != private_key: if show.get('private key') != private_key:
__salt__['wg.set'](name, private_key=private_key) __salt__['wg.set'](name, private_key=private_key)
ret['changes']['private key'] = 'private key changed.' ret['changes']['private key'] = 'private key changed.'

Loading…
Cancel
Save