neb/tools/server-setup.d/05-install-packages.sh
2023-10-22 18:04:18 +02:00

12 lines
No EOL
290 B
Bash
Executable file

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