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

11 lines
209 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-20 00:48:58 +02:00
apt update -y
apt install -y \
2023-10-20 00:19:23 +02:00
cifs-utils \
2023-10-20 00:48:58 +02:00
restic \
docker.io \
docker-compose
2023-10-20 00:19:23 +02:00
fi