diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-12-15 12:26:37 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-12-15 12:26:37 +0100 |
commit | 62900d6404fd2279c4f0be66df232eb66b811bee (patch) | |
tree | 804934052148c2db2a769bf2683a56619f249ba1 /stages | |
parent | 0a55369548c92db6c5b70348483875e9af7c0f99 (diff) | |
download | archinstall-62900d6404fd2279c4f0be66df232eb66b811bee.tar archinstall-62900d6404fd2279c4f0be66df232eb66b811bee.tar.zst archinstall-62900d6404fd2279c4f0be66df232eb66b811bee.zip |
New first_stage.sh implemented.
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." |