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

9 lines
158 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..."
apt update
apt install \
cifs-utils \
restic
fi