mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2025-11-18 06:01:28 -05:00
14 lines
216 B
Bash
Executable file
14 lines
216 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. shared.sh
|
|
. hosts.sh
|
|
|
|
for host in ${hosts_secondary[@]}; do
|
|
remote=root@$host
|
|
|
|
echo
|
|
echo $host
|
|
echo
|
|
|
|
rsync --chmod=F755 session-ticket-keys-sync-deploy $remote:/usr/local/bin/
|
|
done
|