2018-12-02 06:57:34 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2018-12-02 23:15:11 +01:00
|
|
|
echo -n "Enter the size (in GiB) to give the primary partition: "
|
|
|
|
read DISTSIZE
|
|
|
|
|
2018-12-02 06:57:34 +01:00
|
|
|
echo -n "Enter a hostname for this machine: "
|
|
|
|
read HOSTNAME
|
|
|
|
|
|
|
|
echo -n "Enter a username for the local account with sudo rights: "
|
|
|
|
read USERNAME
|
|
|
|
|
2018-12-02 23:15:11 +01:00
|
|
|
env DISTSIZE="$DISTSIZE" ./001-preinstall
|
2018-12-02 06:57:34 +01:00
|
|
|
env HOSTNAME="$HOSTNAME" ./003-configure
|
|
|
|
env USERNAME="$USERNAME" ./004-postinstall
|