Skip to content

Commit

Permalink
fixes #394
Browse files Browse the repository at this point in the history
  • Loading branch information
jkrue committed Jul 3, 2024
1 parent 5dae805 commit 874ad82
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ LogFileSize=0
{% if 'master' in group_names %}
Server=127.0.0.1
{% else %}
Server={{ hostvars[groups.master.0].floating_ip }}
Server={{ hostvars[groups.master.0].private_v4 }}
{% endif %}

### Option: ListenPort
Expand Down Expand Up @@ -146,7 +146,7 @@ ListenIP={{ ansible_default_ipv4.address }}
# Default:
# ServerActive=

ServerActive={{ hostvars[groups.master.0].floating_ip }}
ServerActive={{ hostvars[groups.master.0].private_v4 }}

### Option: Hostname
# Unique, case sensitive hostname.
Expand Down

0 comments on commit 874ad82

Please sign in to comment.