add initial session ticket key synchronization

This commit is contained in:
Daniel Micay 2025-10-30 14:12:24 -04:00
parent f9430a1aeb
commit 9fde84c877
7 changed files with 121 additions and 1 deletions

14
deploy-secondary Executable file
View file

@ -0,0 +1,14 @@
#!/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