From 24c3f0af272ab6f8dfec860bcd4d590d50a65a6a Mon Sep 17 00:00:00 2001 From: Jakob Hagl Date: Mon, 18 Nov 2019 15:17:23 +0100 Subject: [PATCH] Add description for configuration variables --- config.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/config.conf b/config.conf index e07598b..c4c6127 100644 --- a/config.conf +++ b/config.conf @@ -1,4 +1,15 @@ #!/usr/bin/env bash +##################### +# This is the configuration file for the archinstall script. +# Please define here stuff that is needed to execute the scripts correctly. +# For example: +# HDD the storage device where the OS should be installed +# ROOTPART the partition where the Root-partition should be located +# BOOTPART the partition where the Boot-partition should be located +# HOST the hostname of the OS +# USER the username for the primary user +# PWD the password for the primary user and root account +##################### readonly HDD="/dev/sda" readonly ROOTPART="/dev/sda2" readonly BOOTPART="/dev/sda1"