Fiddle with ufw ordering
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 2 seconds

This commit is contained in:
Starbeamrainbowlabs 2021-11-26 21:59:46 +00:00
parent 2989e82ddf
commit bcb8a1c6c3
Signed by: sbrl
GPG key ID: 1BE5172E637709C2
2 changed files with 20 additions and 0 deletions

View file

@ -121,6 +121,10 @@ stage_end "$?";
###############################################################################
###
# Pre-install tasks
###
while read -r preinstall_step; do
#shellcheck disable=SC1090
source "steps-preinstall/${preinstall_step}";
@ -128,11 +132,27 @@ done < <(cat "${temp_dir}/steps-preinstall.txt");
###############################################################################
###
# Install packages
###
apt-get install "$(cat "${temp_dir}/apt-packages.txt")";
###############################################################################
###
# Post-install tasks
###
while read -r postinstall_step; do
#shellcheck disable=SC1090
source "steps-postinstall/${postinstall_step}";
done < <(cat "${temp_dir}/steps-postinstall.txt");
###############################################################################
###
# Final steps
###
source "steps-last/15-ufw.sh";