10 lines
341 B
Bash
Executable File
10 lines
341 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo $(head -c4 </dev/urandom|xxd -p -u) >"/etc/hostname"
|
|
echo "$OPUS_SOURCES" >"/etc/apt/sources.list"
|
|
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 |