ufw: shellcheck strikes again
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds
This commit is contained in:
parent
ef211cab3f
commit
c557d5f70a
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue