neb/tools/server-setup.d/05-install-packages.sh
2023-10-22 17:45:21 +02:00

12 lines
No EOL
228 B
Bash
Executable file

#!/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