You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hardware-setup/post-debootstrap-installer.sh

49 lines
1.2 KiB
Bash

#!/bin/bash
set -e
6 years ago
6 years ago
# locales
echo 'console-setup console-setup/charmap47 select UTF-8' | debconf-set-selections
echo 'keyboard-configuration keyboard-configuration/variant select English (US)' | debconf-set-selections
echo 'keyboard-configuration kekeyboard-configuration keyboard-configuration/layout select English (US)' | debconf-set-selections
6 years ago
echo 'locales locales/default_environment_locale select en_US.UTF-8' | debconf-set-selections
echo 'locales locales/locales_to_be_generated multiselect en_US.UTF-8 UTF-8' | debconf-set-selections
6 years ago
apt-get -y install locales
6 years ago
6 years ago
# mdadm
apt-get -y install mdadm
6 years ago
#replace rescue system hostname with real hostname
mdadm --examine --scan | perl -pe 's/name\=.*?:/name='"$(cat /etc/hostname)"':/' > /etc/mdadm/mdadm.conf
6 years ago
# boot
apt-get -y install linux-image-amd64 grub-pc
6 years ago
# Docker
#add docker key
apt-get -y install gnupg2
6 years ago
apt-key add docker.key
6 years ago
apt-get -y --purge autoremove gnupg2
echo 'deb https://download.docker.com/linux/debian stretch stable' > /etc/apt/sources.list.d/docker.list
apt-get update
6 years ago
apt-get -y install docker-ce
6 years ago
# tbd
6 years ago
apt-get -y install \
systemd \
6 years ago
dropbear \
6 years ago
btrfs-utils \
cryptsetup