From 0514c6fb678315d7115e8b5d57b46bde3868b334 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 1 May 2022 02:27:32 +0100 Subject: [PATCH] consul: bugfix --- src/steps-postinstall/75-consul.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps-postinstall/75-consul.sh b/src/steps-postinstall/75-consul.sh index aca949f..2afac75 100755 --- a/src/steps-postinstall/75-consul.sh +++ b/src/steps-postinstall/75-consul.sh @@ -12,7 +12,7 @@ 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; +systemctl enable --now consul; subtask_end "$?"; task_end "$?";