11 lines
No EOL
209 B
Bash
11 lines
No EOL
209 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
|
|
fi |