Skip to content

Simplify variables to be set #159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
vrrp_instance lb_ipv4 {
state MASTER
interface {{ KEEPALIVED_INTERFACE|default(ansible_facts['default_ipv4']['interface']) }}
interface {{ REPLICATION_INTERFACE|default(ansible_facts['default_ipv4']['interface']) }}
use_vmac
virtual_router_id 32
priority {{KEEPALIVED_PRIORITY}}
priority {{ KEEPALIVED_PRIORITY }}
virtual_ipaddress {
{{DOMSERVER_IP}}
{{ DOMSERVER_IP }}
}
authentication {
auth_type PASS
auth_pass {{REPLICATION_PASSWORD}}
auth_pass {{ REPLICATION_PASSWORD }}
}
script_user domjudge domjudge
notify_backup /home/domjudge/bin/trigger_alert.sh
Expand Down
Loading