mirror of
https://codeberg.org/Computertruhe/Setup-Skripte.git
synced 2025-06-28 11:26:18 +02:00
9 lines
301 B
Bash
Executable file
9 lines
301 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Das ist das include um Dinge nachzuinstalliere
|
|
|
|
if [ -z "$(command -v dialog)" ]; then
|
|
echo "dialog fehlt! Installiere dialog, partclone cloud-guest-utils, und btrfs-progs..."
|
|
sudo apt update
|
|
sudo apt install -y dialog btrfs-progs partclone cloud-guest-utils
|
|
fi
|