workbench-script/install-dependencies.sh

19 lines
274 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() {
2024-11-20 14:11:39 +00:00
sudo apt install smartmontools lshw hwinfo dmidecode inxi
2024-10-15 22:32:02 +00:00
}
main "${@}"
# written in emacs
# -*- mode: shell-script; -*-