ufw: shellcheck strikes again
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds

This commit is contained in:
Starbeamrainbowlabs 2021-11-26 22:10:01 +00:00
parent ef211cab3f
commit c557d5f70a
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -4,6 +4,7 @@ task_begin "Configuring firewall";
#shellcheck disable=SC2154
while read -r rule; do
#shellcheck disable=SC2086
execute ufw ${rule};
done < <(cat "${temp_dir}/ufw-rules.txt");
@ -11,6 +12,7 @@ task_end "$?" "Error: Failed to configure firewall";
# TODO: Make this automatic. For now it's on a prompt to avoid a lockout.
#shellcheck disable=SC1117
if ask_yesno "Enable UFW? Current firewall rules are listed below.\n$(ufw show added)"; then
task_begin "Enabling UFW";
execute ufw enable;