workbench-script/install-dependencies.sh
pedro fde7173ea5 pxe/Makefile: avoid the clean method
move qemu-system to install dependencies
2024-12-11 19:49:33 +01:00

30 lines
573 B
Bash
Executable file

#!/bin/sh
# Copyright (c) 2024 Pedro <copyright@cas.cat>
# SPDX-License-Identifier: AGPL-3.0-or-later
set -e
set -u
# DEBUG
set -x
main() {
sudo apt update && \
apt install -y \
smartmontools \
lshw \
hwinfo \
dmidecode \
inxi \
python3 \
pipenv \
sudo \
debootstrap \
qemu-system
}
main "${@}"
# written in emacs
# -*- mode: shell-script; -*-