Shell best practice (#40)
* add shell options to syncconf handler to fail fast in case of error * update CHANGELOG
This commit is contained in:
parent
8e7ed9e702
commit
3322faf576
|
@ -1,6 +1,10 @@
|
|||
Changelog
|
||||
---------
|
||||
|
||||
**6.0.1**
|
||||
|
||||
- add shell options to syncconf handler to fail fast in case of error
|
||||
|
||||
**6.0.0**
|
||||
|
||||
- Newer versions of WireGuard (around November 2019) introduced `wg syncconf` subcommand. This has the advantage that changes to the WireGuard configuration can be applied without disturbing existing connections. With this change this role tries to use `wg syncconf` subcommand when available. This even works if you have hosts with older and newer WireGuard versions.
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
|
||||
- name: syncconf wireguard
|
||||
shell: |
|
||||
set -o errexit
|
||||
set -o pipefail
|
||||
set -o nounset
|
||||
systemctl is-active wg-quick@wg-quick@{{ wireguard_interface|quote }} || systemctl start wg-quick@{{ wireguard_interface|quote }}
|
||||
wg syncconf {{ wireguard_interface|quote }} <(wg-quick strip /etc/wireguard/{{ wireguard_interface|quote }}.conf)
|
||||
exit 0
|
||||
|
|
Reference in a new issue