Compare commits

...

2 Commits

Author SHA1 Message Date
Starbeamrainbowlabs 7529d51f6b
fixup
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds Details
2022-08-06 21:54:04 +01:00
Starbeamrainbowlabs a9b1660b4f
run.sh: run ssh cluster config postinstall last 2022-08-06 21:52:35 +01:00
2 changed files with 4 additions and 1 deletions

View File

@ -159,7 +159,6 @@ queue_preinstall_step "100-chrony.sh";
queue_postinstall_step "20-collectd.sh";
queue_postinstall_step "100-ssh-cluster-config.sh";
task_end "$?";
stage_end "$?";
@ -266,6 +265,7 @@ stage_end "$?" "Failed to install apt packages";
step_current="4";
stage_begin "Running post-install tasks";
while read -r postinstall_step; do
#shellcheck disable=SC1090
@ -281,6 +281,9 @@ stage_begin "$?" "Failed to run 1 or more post-install tasks";
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";
###############################################################################