2022-05-10 10:50:10 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
echo $(head -c4 </dev/urandom|xxd -p -u) >"/etc/hostname"
|
2022-05-10 11:30:32 +00:00
|
|
|
echo "$OPUS_SOURCES" >"/etc/apt/sources.list"
|
2022-05-10 10:50:10 +00:00
|
|
|
apt -y update
|
|
|
|
apt -y upgrade
|
|
|
|
apt -y install keyboard-configuration
|
|
|
|
apt -y install "$OPUS_LINUX" grub2 sudo network-manager python3
|
|
|
|
apt -y install --download-only console-setup locales tzdata
|
|
|
|
apt -y autoclean
|
|
|
|
rm /setup
|