diff options
Diffstat (limited to 'stages')
-rw-r--r-- | stages/first_stage.sh | 14 | ||||
-rw-r--r-- | stages/second_stage.sh | 5 |
2 files changed, 19 insertions, 0 deletions
diff --git a/stages/first_stage.sh b/stages/first_stage.sh index 0d7b9f0..7bf0f52 100644 --- a/stages/first_stage.sh +++ b/stages/first_stage.sh @@ -62,3 +62,17 @@ bash partition_disk.sh $disk_path bash create_filesystems.sh $boot_partition_path $root_partition_path bash mount_filesystems.sh $root_partition_path + +bash install_packages.sh $desktop + +bash install_archinstall.sh $REPOSITORY_PATH + +bash write_fstab.sh + +bash second_stage.sh + +bash copy_archinstall_log.sh $LOG_FILE_PATH + +bash unmount_filesystems.sh $root_partition_path + +bash print_final_message.sh diff --git a/stages/second_stage.sh b/stages/second_stage.sh index 5810806..33b75df 100644 --- a/stages/second_stage.sh +++ b/stages/second_stage.sh @@ -19,3 +19,8 @@ echo "Entering second_stage.sh - OK" + +echo "Debug values:" +echo $PATH +echo $REPOSITORY_PATH +echo "End of debug values." |