arch-maride-flavour/install.sh

74 lines
1.6 KiB
Bash
Raw Normal View History

2017-07-30 19:58:31 +00:00
#!/bin/sh
echo "HOI, this is the 'Arch w/ maride flavour' install script (chainloader)"
echo "Hope you used TLS..."
echo -e "=-=-=-=-=-=-=-=-=-=-=\n"
echo "=> Things you should've set up already:"
echo " * Your keyboard layout (consider passwords!)"
echo " * Any RAID setup that you are planning to set up"
echo " * An internet connection (DHCP or static, idc...)"
echo -n "=> Did you set that up? (y/N) "
read answer
if [ "$answer" != "y" ]; then
echo "OK, then do necessary steps and see you soon."
exit 1
fi
echo "=> Please enter the full path to the block device the installation should take place on: (e.g. /dev/sda)"
echo " Make sure to choose a drive, not a partition."
echo " Hint: here's a list of devices that may be the right:"
ls /dev/sd* /dev/mmc* 2>/dev/null
echo -n "Install to: "
read blockdevice
2017-07-30 22:02:49 +00:00
export blockdevice
2017-07-30 20:19:24 +00:00
for check in checks/*.check
do
echo "=> Running check '$check'..."
2017-07-30 21:55:14 +00:00
$check
2017-07-30 20:51:32 +00:00
return=$?
if [ "$return" -ne 0 ]; then
2017-07-30 20:19:24 +00:00
echo "=> Check failed. Fix it, maybe."
exit
fi
done
for step in steps/*.step
do
echo "=> Running step '$step'..."
2017-07-30 21:55:14 +00:00
$step
return=$?
if [ "$return" -ne 0 ]; then
echo "=> Step failed. That is weird. Sorry. Check logs maybe."
exit
fi
done
2017-08-06 10:07:46 +00:00
for flavour in flavours/*.flavour
do
echo -n "=> Do you want to run flavour '$flavour'? (y/N) "
read answer
if [ "$answer" == "y" ]; then
echo "=> Running flavour '$flavour'..."
pushd $flavour
2017-08-07 15:38:39 +00:00
$flavour/install.sh
return=$?
if [ "$return" -ne 0 ]; then
echo "=> Flavour failed. :("
fi
popd
2017-08-06 10:07:46 +00:00
fi
done
echo -n "=> Finished \o/ reboot now? (Y/n) "
read answer
if [ "$answer" == "n" ]; then
exit
fi
reboot