From 512c3d6dd94889fb72d8c6b9c8c755a63a9e48d2 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 30 Apr 2022 15:10:22 +0100 Subject: [PATCH] consul: add comment --- src/steps-postinstall/75-consul.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/steps-postinstall/75-consul.sh b/src/steps-postinstall/75-consul.sh index 6603c5c..aca949f 100755 --- a/src/steps-postinstall/75-consul.sh +++ b/src/steps-postinstall/75-consul.sh @@ -9,9 +9,10 @@ cp "configs/consul-client.hcl" "/etc/consul/client.hcl"; cp "configs/consul-server.hcl" "/etc/consul/server.hcl"; subtask_end "$?"; +# No UFW rules required, as we're now using wesher/wireguard, and allowing all inbound traffic on that interface + subtask_begin "Starting Consul and enabling on boot"; systemctl consul; subtask_end "$?"; - task_end "$?";