neb/tools/server-setup.d/05-install-packages.sh

12 lines
290 B
Bash
Raw Normal View History

2023-10-20 00:19:23 +02:00
#!/bin/sh
if grep -q "debian" /etc/os-release; then
echo "installing packages..."
2023-10-22 18:04:18 +02:00
DEBIAN_FRONTEND=noninteractive apt update -y
DEBIAN_FRONTEND=noninteractive apt install -y \
2023-10-20 00:19:23 +02:00
cifs-utils \
2023-10-20 00:48:58 +02:00
restic \
docker.io \
2023-10-20 02:43:56 +02:00
docker-compose \
apparmor
2023-10-20 00:19:23 +02:00
fi