sous-chefs / openvpn

Development repository for the openvpn cookbook
https://supermarket.chef.io/cookbooks/openvpn
Apache License 2.0
98 stars 160 forks source link

Support key-only push options #197

Closed EugenMayer closed 11 months ago

EugenMayer commented 2 years ago

When pushing register-dns i right now have to do

default['openvpn']['push_options']['register-dns'] = ''

which then ends up to be this in the configuration

push "register-dns "

It would be great if one could use

default['openvpn']['push_options']['register-dns'] = nil

And thus we result in having

push "register-dns"

Since no value is expected.

Thank you for considering!