workbench-script/install-dependencies.sh

30 lines
573 B
Bash
Raw Normal View History

2024-10-15 22:32:02 +00:00
#!/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
2024-10-15 22:32:02 +00:00
}
main "${@}"
# written in emacs
# -*- mode: shell-script; -*-