Add dia
[hvlinux.git] / stage1 / hv-install-1
index a33015d..13f564d 100755 (executable)
@@ -2,8 +2,12 @@
 
 source ../functions/main
 
+check_for_root_user
 init_log_file
 
+# This function will exit if the stage is already completed
+check_completed_stage
+
 rscr mult "Performing pre-install" pre-install
 
 # Logging-in as 'lfs' user, and executing the hv-install-2 script. The
@@ -12,7 +16,7 @@ rscr mult "Performing pre-install" pre-install
 su - lfs -c "cd ${PWD}; ./hv-install-2"
 
 rscr mult "Performing post-install" post-install
-
-echo "Total build time: $(get_total_build_time ${LFS_LOG_FILE})h"
+write_completed_stage
+display_stage_build_stats
 
 exit 0