Restructure: move infra packages to root level

This commit is contained in:
Artemis
2026-06-14 19:53:10 -04:00
parent 6f4c54cdbb
commit a54d4cb0c9
49 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
# ============================================================
# WolfStack Keepalived — PRIMARY (Node 1 / mk50)
# Host: 192.168.50.41
# VIP : 192.168.63.254
# Interface: nic0
# ============================================================
global_defs {
router_id WOLFSTACK_NODE1
script_security
enable_script_security
}
vrrp_script check_wolfstack {
script "/usr/bin/nc -z -w 2 127.0.0.1 8553"
interval 2
timeout 3
fall 3
rise 2
weight -40
}
vrrp_instance VI_WOLFSTACK {
state MASTER
interface nic0
virtual_router_id 63
priority 150
advert_int 1
nopreempt
authentication {
auth_type PASS
auth_pass Letmein1$
}
unicast_peer {
192.168.5.214
192.168.15.182
}
virtual_ipaddress {
192.168.63.254
}
track_script {
check_wolfstack
}
}