Skip to content

Commit

Permalink
Merge pull request #204 from exodusftw/fix_dhcp_option
Browse files Browse the repository at this point in the history
added missing space to __main__ for dhcp options to OpenVPN
  • Loading branch information
jotyGill authored Oct 28, 2018
2 parents 23e76a0 + b2c0879 commit e6ffebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpyn/openpyn.py
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ def connect(server: str, port: str, silent: bool, test: bool, skip_dns_patch: bo
if (use_systemd_resolved or use_resolvconf) and skip_dns_patch is False: # Debian Based OS + do DNS patching
try:
if use_systemd_resolved:
openvpn_options += "--dhcp-option DOMAIN-ROUTE ."
openvpn_options += " " + "--dhcp-option DOMAIN-ROUTE ."
up_down_script = __basefilepath__ + "scripts/update-systemd-resolved.sh"
logger.success("Your OS '%s' has systemd-resolve running, \
using it to update DNS Resolver Entries", detected_os)
Expand Down

0 comments on commit e6ffebf

Please sign in to comment.