mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2025-11-21 15:30:32 -05:00
16 lines
361 B
Bash
Executable file
16 lines
361 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. shared.sh
|
|
. hosts.sh
|
|
|
|
for host in ${hosts_primary[@]}; do
|
|
remote=root@$host
|
|
|
|
echo
|
|
echo $host
|
|
echo
|
|
|
|
rsync --chmod=F755 certbot-replicate $remote:/usr/local/bin/
|
|
rsync etc/systemd/system/certbot-renew.service.d/replicate.conf $remote:/etc/systemd/system/certbot-renew.service.d/
|
|
ssh $remote systemctl daemon-reload
|
|
done
|