summaryrefslogtreecommitdiff
path: root/archinstall.sh
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2020-03-17 13:33:26 +0100
committerxengineering <mail2xengineering@protonmail.com>2020-03-17 13:33:26 +0100
commit3d4061b6cec978642f2ca9b2de9c6dd9dff5c37b (patch)
tree7b807b657fbfd96ab67c6bf0e320639428f06ab5 /archinstall.sh
parent3857365127e27d5b64d5dc36d18fb4f618f9ae70 (diff)
downloadarchinstall-3d4061b6cec978642f2ca9b2de9c6dd9dff5c37b.tar
archinstall-3d4061b6cec978642f2ca9b2de9c6dd9dff5c37b.tar.zst
archinstall-3d4061b6cec978642f2ca9b2de9c6dd9dff5c37b.zip
Implement Partitioning
Diffstat (limited to 'archinstall.sh')
-rw-r--r--archinstall.sh25
1 files changed, 21 insertions, 4 deletions
diff --git a/archinstall.sh b/archinstall.sh
index eedb287..1fc28fc 100644
--- a/archinstall.sh
+++ b/archinstall.sh
@@ -56,9 +56,9 @@ EOF
export BRANCH="master" # possible alternatives: "devel" or "feature_<myfeature>"
export INTERNET_TEST_SERVER="archlinux.org"
-export INTERNET_TEST_PING_TIMEOUT=1 # seconds
-export FIRST_STAGE_LINK=""
-export SECOND_STAGE_LINK=""
+export INTERNET_TEST_PING_TIMEOUT=1 # in seconds
+export FIRST_STAGE_LINK="https://raw.githubusercontent.com/xengineering/archinstall/$BRANCH/stages/first_stage.sh"
+export SECOND_STAGE_LINK="https://raw.githubusercontent.com/xengineering/archinstall/$BRANCH/stages/second_stage.sh"
export PACKAGE_LIST="base linux linux-firmware nano networkmanager"
export DEFAULT_PASSWORD="archinstall"
@@ -66,6 +66,7 @@ export DEFAULT_PASSWORD="archinstall"
# Variables
export boot_mode="unknown" # alternatives: "bios" or "uefi"
+export path_to_disk="/dev/null" # e.g. "/dev/sda"
export luks_encryption="unknown" # alternatives: "yes" or "no"
export path_to_timezone="/usr/share/zoneinfo/Europe/Berlin"
export locales_to_generate="de_DE.UTF-8 UTF-8;de_DE ISO-8859-1;de_DE@euro ISO-8859-15"
@@ -73,7 +74,23 @@ export keymap="de-latin1"
export hostname="archlinux" # will be set to a user-chosen hostname
+# Check internet connection
+
+if ping -w $INTERNET_TEST_PING_TIMEOUT -c 1 $INTERNET_TEST_SERVER; then
+ echo "Internet connection is ready - OK"
+ echo ""
+else
+ echo "Could not reach INTERNET_TEST_SERVER '$INTERNET_TEST_SERVER' - FAILED"
+ exit
+fi
+
+
+# Update the system clock
+
+timedatectl set-ntp true
+
+
# Download and run first stage
-curl https://raw.githubusercontent.com/xengineering/archinstall/$BRANCH/stages/first_stage.sh > /root/first_stage.sh
+curl $FIRST_STAGE_LINK > /root/first_stage.sh
bash /root/first_stage.sh