Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Re-inserted a rm statement for firstboot file #74

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/f5_image_prep/startup
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,11 @@ function main() {
log "Cannot run OpenStack auto-configuration on non-VE platforms, quitting..."
fi

# Delete the /config/firstboot file, we have completed initial setup
if [[ ${IS_FIRST_BOOT} == "true" ]]; then
rm -f $FIRST_BOOT_FILE
fi

wait_condition_notify

cleanup_user_data
Expand Down