9 lines
158 B
Bash
9 lines
158 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if grep -q "debian" /etc/os-release; then
|
||
|
echo "installing packages..."
|
||
|
apt update
|
||
|
apt install \
|
||
|
cifs-utils \
|
||
|
restic
|
||
|
fi
|