瀏覽代碼

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 年之前
父節點
當前提交
70c5f41ce9
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. +6
    -0
      _states/wireguard.py

+ 6
- 0
_states/wireguard.py 查看文件

@@ -34,6 +34,12 @@ def present(name, listen_port=None, fwmark=None, private_key=None):
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:
__salt__['wg.set'](name, private_key=private_key)
ret['changes']['private key'] = 'private key changed.'

Loading…
取消
儲存