6 lines
277 B
Bash
6 lines
277 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
install -o adguard -g adguard -m 600 /etc/letsencrypt/live/dns.benpro.fr/privkey.pem /home/adguard/
|
|
install -o adguard -g adguard -m 600 /etc/letsencrypt/live/dns.benpro.fr/fullchain.pem /home/adguard/
|
|
systemctl start AdGuardHome.service
|