Compare commits

..

No commits in common. "7529d51f6b24c4524794bd1a5a1a3dbc598650b5" and "994d954703532d125f2d70661288f4d1b0b6b942" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View file

@ -159,6 +159,7 @@ queue_preinstall_step "100-chrony.sh";
queue_postinstall_step "20-collectd.sh"; queue_postinstall_step "20-collectd.sh";
queue_postinstall_step "100-ssh-cluster-config.sh";
task_end "$?"; task_end "$?";
stage_end "$?"; stage_end "$?";
@ -265,7 +266,6 @@ stage_end "$?" "Failed to install apt packages";
step_current="4"; step_current="4";
stage_begin "Running post-install tasks"; stage_begin "Running post-install tasks";
while read -r postinstall_step; do while read -r postinstall_step; do
#shellcheck disable=SC1090 #shellcheck disable=SC1090
@ -281,9 +281,6 @@ stage_begin "$?" "Failed to run 1 or more post-install tasks";
step_current="5"; step_current="5";
# This is here so that we can be sure it runs last, as it may prompt the user about ssh keys! Then we don't have to site around waiting.
source "steps-last/10-ssh-cluster-config.sh";
source "steps-last/15-ufw.sh"; source "steps-last/15-ufw.sh";
############################################################################### ###############################################################################