| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- #!/usr/bin/env sh
- set -e
- echo_stderr() {
- echo "$@" 1>&2
- }
- command_exists() {
- command -v "$@" >/dev/null 2>&1
- }
- read_secret()
- {
- stty -echo
- trap 'stty echo' EXIT
- read -r "$@"
- stty echo
- trap - EXIT
- echo
- }
- while [ $# -gt 0 ]; do
- case $1 in
- --preset)
- DEBI_PRESET=$2
- shift
- ;;
- --ip)
- DEBI_IP=$2
- shift
- ;;
- --netmask)
- DEBI_NETMASK=$2
- shift
- ;;
- --gateway)
- DEBI_GATEWAY=$2
- shift
- ;;
- --ns)
- DEBI_NS=$2
- shift
- ;;
- --hostname)
- DEBI_HOSTNAME=$2
- shift
- ;;
- --ethn)
- DEBI_KERNEL_PARAMS=' net.ifnames=0 biosdevname=0'
- ;;
- --ssh-password)
- DEBI_SSH=true
- DEBI_SSH_PASSWORD=$2
- shift
- ;;
- --ssh-keys)
- DEBI_SSH=true
- DEBI_SSH_KEYS=$2
- shift
- ;;
- --protocol)
- DEBI_PROTOCOL=$2
- shift
- ;;
- --mirror)
- DEBI_MIRROR=$2
- shift
- ;;
- --directory)
- DEBI_DIRECTORY=${2%/}
- shift
- ;;
- --suite)
- DEBI_SUITE=$2
- shift
- ;;
- --skip-user)
- DEBI_SKIP_USER=true
- ;;
- --username)
- DEBI_USERNAME=$2
- shift
- ;;
- --password)
- DEBI_PASSWORD=$2
- shift
- ;;
- --timezone)
- DEBI_TIMEZONE=$2
- shift
- ;;
- --ntp)
- DEBI_NTP=$2
- shift
- ;;
- --skip-part)
- DEBI_SKIP_PART=true
- ;;
- --disk)
- DEBI_DISK=$2
- shift
- ;;
- --part)
- DEBI_PART=$2
- shift
- ;;
- --fs)
- DEBI_FS=$2
- shift
- ;;
- --kernel)
- DEBI_KERNEL=$2
- shift
- ;;
- --security)
- DEBI_SECURITY=$2
- shift
- ;;
- --install)
- DEBI_INSTALL=$2
- shift
- ;;
- --upgrade)
- DEBI_UPGRADE=$2
- shift
- ;;
- --poweroff)
- DEBI_POWEROFF=true
- ;;
- --arch)
- DEBI_ARCH=$2
- shift
- ;;
- --boot-partition)
- DEBI_BOOT_PARTITION=true
- ;;
- --dry-run)
- DEBI_DRY_RUN=true
- ;;
- *)
- echo_stderr "Error: Illegal option $1"
- exit 1
- esac
- shift
- done
- if [ -n "$DEBI_PRESET" ]; then
- case "$DEBI_PRESET" in
- china)
- DEBI_NS=${DEBI_NS:-223.5.5.5 223.6.6.6}
- DEBI_PROTOCOL=${DEBI_PROTOCOL:-https}
- DEBI_MIRROR=${DEBI_MIRROR:-mirrors.aliyun.com}
- DEBI_TIMEZONE=${DEBI_TIMEZONE:-Asia/Shanghai}
- DEBI_NTP=${DEBI_NTP:-ntp.aliyun.com}
- DEBI_SECURITY=${DEBI_SECURITY:-true}
- ;;
- cloud)
- DEBI_PROTOCOL=${DEBI_PROTOCOL:-https}
- DEBI_MIRROR=${DEBI_MIRROR:-deb.debian.org}
- DEBI_SECURITY=${DEBI_SECURITY:-true}
- ;;
- *)
- echo_stderr "Error: No such preset $DEBI_PRESET"
- exit 1
- esac
- fi
- DEBI_SUITE=${DEBI_SUITE:-stable}
- DEBI_NEW="debian-$DEBI_SUITE"
- DEBI_NEW_DIR="/boot/$DEBI_NEW"
- save_preseed="cat"
- if [ "$DEBI_DRY_RUN" != true ]; then
- user="$(id -un 2>/dev/null || true)"
- if [ "$user" != root ]; then
- echo_stderr 'Error: Require root.'
- exit 1
- fi
- rm -rf "$DEBI_NEW_DIR"
- mkdir -p "$DEBI_NEW_DIR"
- cd "$DEBI_NEW_DIR"
- save_preseed='tee -a preseed.cfg'
- fi
- $save_preseed << EOF
- # Localization
- d-i debian-installer/locale string en_US.UTF-8
- d-i keyboard-configuration/xkb-keymap select us
- # Network configuration
- d-i netcfg/choose_interface select auto
- EOF
- DEBI_NS=${DEBI_NS:-8.8.8.8 8.8.4.4}
- if [ -n "$DEBI_IP" ]; then
- echo 'd-i netcfg/disable_autoconfig boolean true' | $save_preseed
- echo "d-i netcfg/get_ipaddress string $DEBI_IP" | $save_preseed
- if [ -n "$DEBI_NETMASK" ]; then
- echo "d-i netcfg/get_netmask string $DEBI_NETMASK" | $save_preseed
- fi
- if [ -n "$DEBI_GATEWAY" ]; then
- echo "d-i netcfg/get_gateway string $DEBI_GATEWAY" | $save_preseed
- fi
- if [ -n "$DEBI_NS" ]; then
- echo "d-i netcfg/get_nameservers string $DEBI_NS" | $save_preseed
- fi
- echo 'd-i netcfg/confirm_static boolean true' | $save_preseed
- fi
- $save_preseed << EOF
- d-i netcfg/get_hostname string debian
- d-i netcfg/get_domain string
- EOF
- if [ -n "$DEBI_HOSTNAME" ]; then
- echo "d-i netcfg/hostname string $DEBI_HOSTNAME" | $save_preseed
- fi
- echo 'd-i hw-detect/load_firmware boolean true' | $save_preseed
- if [ "$DEBI_SSH" = true ]; then
- $save_preseed << EOF
- # Network console
- d-i anna/choose_modules string network-console
- d-i preseed/early_command string anna-install network-console
- EOF
- if [ -n "$DEBI_SSH_PASSWORD" ]; then
- echo "d-i network-console/password password $DEBI_SSH_PASSWORD" | $save_preseed
- echo "d-i network-console/password-again password $DEBI_SSH_PASSWORD" | $save_preseed
- fi
- if [ -n "$DEBI_SSH_KEYS" ]; then
- echo "d-i network-console/authorized_keys_url string $DEBI_SSH_KEYS" | $save_preseed
- fi
- echo 'd-i network-console/start select Continue' | $save_preseed
- fi
- DEBI_PROTOCOL=${DEBI_PROTOCOL:-http}
- DEBI_MIRROR=${DEBI_MIRROR:-deb.debian.org}
- DEBI_DIRECTORY=${DEBI_DIRECTORY:-/debian}
- $save_preseed << EOF
- # Mirror settings
- d-i mirror/country string manual
- d-i mirror/protocol string $DEBI_PROTOCOL
- d-i mirror/$DEBI_PROTOCOL/hostname string $DEBI_MIRROR
- d-i mirror/$DEBI_PROTOCOL/directory string $DEBI_DIRECTORY
- d-i mirror/$DEBI_PROTOCOL/proxy string
- d-i mirror/suite string $DEBI_SUITE
- d-i mirror/udeb/suite string $DEBI_SUITE
- EOF
- if [ "$DEBI_SKIP_USER" != true ]; then
- DEBI_USERNAME=${DEBI_USERNAME:-debian}
- if command_exists mkpasswd; then
- if [ -z "$DEBI_PASSWORD" ]; then
- DEBI_PASSWORD="$(mkpasswd -m sha512crypt)"
- else
- DEBI_PASSWORD="$(mkpasswd -m sha512crypt "$DEBI_PASSWORD")"
- fi
- elif command_exists busybox; then
- if [ -z "$DEBI_PASSWORD" ]; then
- DEBI_PASSWORD="$(busybox mkpasswd -m sha512)"
- else
- DEBI_PASSWORD="$(busybox mkpasswd -m sha512 "$DEBI_PASSWORD")"
- fi
- elif command_exists python3; then
- if [ -z "$DEBI_PASSWORD" ]; then
- DEBI_PASSWORD="$(python3 -c 'import crypt, getpass; print(crypt.crypt(getpass.getpass(), crypt.mksalt(crypt.METHOD_SHA512)))')"
- else
- DEBI_PASSWORD="$(python3 -c "import crypt; print(crypt.crypt(\"$DEBI_PASSWORD\", crypt.mksalt(crypt.METHOD_SHA512)))")"
- fi
- else
- DEBI_CLEARTEXT=true
- if [ -z "$DEBI_PASSWORD" ]; then
- printf 'Password: '
- read_secret DEBI_PASSWORD
- fi
- fi
- $save_preseed << EOF
- # Account setup
- EOF
- if [ "$DEBI_USERNAME" = root ]; then
- echo 'd-i passwd/make-user boolean false' | $save_preseed
- if [ "$DEBI_CLEARTEXT" = true ]; then
- $save_preseed << EOF
- d-i passwd/root-password password $DEBI_PASSWORD
- d-i passwd/root-password-again password $DEBI_PASSWORD
- EOF
- else
- echo "d-i passwd/root-password-crypted password $DEBI_PASSWORD" | $save_preseed
- fi
- else
- $save_preseed << EOF
- d-i passwd/root-login boolean false
- d-i passwd/user-fullname string
- d-i passwd/username string $DEBI_USERNAME
- EOF
- if [ "$DEBI_CLEARTEXT" = true ]; then
- $save_preseed << EOF
- d-i passwd/user-password password $DEBI_PASSWORD
- d-i passwd/user-password-again password $DEBI_PASSWORD
- EOF
- else
- echo "d-i passwd/user-password-crypted password $DEBI_PASSWORD" | $save_preseed
- fi
- fi
- fi
- DEBI_TIMEZONE=${DEBI_TIMEZONE:-UTC}
- DEBI_NTP=${DEBI_NTP:-0.debian.pool.ntp.org}
- $save_preseed << EOF
- # Clock and time zone setup
- d-i clock-setup/utc boolean true
- d-i time/zone string $DEBI_TIMEZONE
- d-i clock-setup/ntp boolean true
- d-i clock-setup/ntp-server string $DEBI_NTP
- EOF
- if [ "$DEBI_SKIP_PART" != true ]; then
- DEBI_FS=${DEBI_FS:-ext4}
- DEBI_PART=${DEBI_PART:-regular}
- $save_preseed << EOF
- # Partitioning
- EOF
- if [ -n "$DEBI_DISK" ]; then
- echo "d-i partman-auto/disk string $DEBI_DISK" | $save_preseed
- fi
- $save_preseed << EOF
- d-i partman-auto/method string $DEBI_PART
- d-i partman-lvm/device_remove_lvm boolean true
- d-i partman-md/device_remove_md boolean true
- d-i partman-lvm/confirm boolean true
- d-i partman-lvm/confirm_nooverwrite boolean true
- EOF
- if [ "$DEBI_PART" = "regular" ]; then
- $save_preseed << EOF
- d-i partman/default_filesystem string $DEBI_FS
- d-i partman-auto/expert_recipe string naive :: 0 1 -1 \$default_filesystem \$primary{ } \$bootable{ } method{ format } format{ } use_filesystem{ } \$default_filesystem{ } mountpoint{ / } .
- d-i partman-auto/choose_recipe select naive
- d-i partman-basicfilesystems/no_swap boolean false
- EOF
- fi
- $save_preseed << EOF
- d-i partman-partitioning/confirm_write_new_label boolean true
- d-i partman/choose_partition select finish
- d-i partman/confirm boolean true
- d-i partman/confirm_nooverwrite boolean true
- d-i partman/mount_style select uuid
- EOF
- fi
- $save_preseed << EOF
- # Base system installation
- d-i base-installer/install-recommends boolean false
- EOF
- if [ -n "$DEBI_KERNEL" ]; then
- echo "d-i base-installer/kernel/image string $DEBI_KERNEL" | $save_preseed
- fi
- if [ -z "$DEBI_SECURITY" ]; then
- DEBI_SECURITY=http://security.debian.org/debian-security
- else
- if [ "$DEBI_SECURITY" = true ]; then
- DEBI_SECURITY=$DEBI_PROTOCOL://$DEBI_MIRROR${DEBI_DIRECTORY%/*}/debian-security
- fi
- fi
- $save_preseed << EOF
- # Apt setup
- d-i apt-setup/services-select multiselect updates, backports
- d-i apt-setup/local0/repository string $DEBI_SECURITY $DEBI_SUITE/updates main
- d-i apt-setup/local0/source boolean true
- EOF
- DEBI_UPGRADE=${DEBI_UPGRADE:-full-upgrade}
- $save_preseed << EOF
- # Package selection
- tasksel tasksel/first multiselect ssh-server
- EOF
- if [ -n "$DEBI_INSTALL" ]; then
- echo "d-i pkgsel/include string $DEBI_INSTALL" | $save_preseed
- fi
- $save_preseed << EOF
- d-i pkgsel/upgrade select $DEBI_UPGRADE
- popularity-contest popularity-contest/participate boolean false
- # Boot loader installation
- d-i grub-installer/only_debian boolean true
- d-i grub-installer/bootdev string default
- EOF
- if [ -n "$DEBI_KERNEL_PARAMS" ]; then
- echo "d-i debian-installer/add-kernel-opts string$DEBI_KERNEL_PARAMS" | $save_preseed
- fi
- $save_preseed << EOF
- # Finishing up the installation
- d-i finish-install/reboot_in_progress note
- EOF
- if [ "$DEBI_POWEROFF" = true ]; then
- echo 'd-i debian-installer/exit/poweroff boolean true' | $save_preseed
- fi
- save_grubcfg=cat
- if [ "$DEBI_DRY_RUN" != true ]; then
- if [ -z "$DEBI_ARCH" ]; then
- if command_exists dpkg; then
- DEBI_ARCH="$(dpkg --print-architecture)"
- else
- DEBI_ARCH=amd64
- fi
- fi
- DEBI_BASE_URL="$DEBI_PROTOCOL://$DEBI_MIRROR$DEBI_DIRECTORY/dists/$DEBI_SUITE/main/installer-$DEBI_ARCH/current/images/netboot/debian-installer/$DEBI_ARCH"
- if command_exists wget; then
- wget "$DEBI_BASE_URL/linux" "$DEBI_BASE_URL/initrd.gz"
- elif command_exists curl; then
- curl -O "$DEBI_BASE_URL/linux" -O "$DEBI_BASE_URL/initrd.gz"
- elif command_exists busybox; then
- busybox wget "$DEBI_BASE_URL/linux" "$DEBI_BASE_URL/initrd.gz"
- else
- echo_stderr 'Error: wget/curl/busybox not found.'
- exit 1
- fi
- gunzip initrd.gz
- echo preseed.cfg | cpio -H newc -o -A -F initrd
- gzip initrd
- if command_exists update-grub; then
- DEBI_GRUBCFG=/boot/grub/grub.cfg
- update-grub
- elif command_exists grub2-mkconfig; then
- DEBI_GRUBCFG=/boot/grub2/grub.cfg
- grub2-mkconfig -o "$DEBI_GRUBCFG"
- else
- echo_stderr 'Error: Command update-grub/grub2-mkconfig not found.'
- exit 1
- fi
- save_grubcfg="tee -a $DEBI_GRUBCFG"
- fi
- if [ "$DEBI_BOOT_PARTITION" = true ]; then
- DEBI_BOOT_DIR=/
- else
- DEBI_BOOT_DIR=/boot/
- fi
- DEBI_NEW_DIR="$DEBI_BOOT_DIR$DEBI_NEW"
- $save_grubcfg << EOF
- menuentry 'Debian Installer' --id debi {
- insmod part_msdos
- insmod part_gpt
- insmod ext2
- linux $DEBI_NEW_DIR/linux$DEBI_KERNEL_PARAMS
- initrd $DEBI_NEW_DIR/initrd.gz
- }
- EOF
|