neb/tools/setup/05-install-packages.sh
2023-10-20 02:43:56 +02:00

12 lines
No EOL
228 B
Bash

#!/bin/sh
if grep -q "debian" /etc/os-release; then
echo "installing packages..."
apt update -y
apt install -y \
cifs-utils \
restic \
docker.io \
docker-compose \
apparmor
fi