aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/setup-debian
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/setup-debian')
-rwxr-xr-xscripts/setup-debian54
1 files changed, 0 insertions, 54 deletions
diff --git a/scripts/setup-debian b/scripts/setup-debian
deleted file mode 100755
index 196eacb8..00000000
--- a/scripts/setup-debian
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-
-# ---------------------------------------------------------------------------------------------------------------------
-# SPDX-License-Identifier: MIT
-# ---------------------------------------------------------------------------------------------------------------------
-
-set -u
-
-if [ $(id -u) -ne 0 ]; then
- echo >&2 "Verifying access to sudo, please enter your password if prompted."
- sudo -v
- if [ $? -ne 0 ]; then
- echo >&2 "Could not use sudo, exiting"
- exit 1
- fi
- exec sudo "$0" "$@"
-fi
-
-set -- \
- binutils \
- bzip2 \
- ca-certificates \
- chrpath \
- cpio \
- cpp \
- diffstat \
- file \
- g++ \
- gawk \
- gcc \
- git \
- libc-dev-bin \
- locales \
- make \
- patch \
- python3 \
- python3-distutils \
- rsync \
- wget \
- ssh
-
-# This is helpful to write images, and is in our documentation
-set -- "$@" bmap-tools
-
-echo >&2 "Installing packages.."
-apt-get update \
- && DEBIAN_FRONTEND=noninteractive \
- apt-get install -y -f --no-install-recommends "$@"
-
-echo >&2 "Generating the en_US.UTF-8 locale"
-sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
- locale-gen
-
-echo >&2 "Setup complete"