Listing 1 triggers-sat
#! /bin/sh
# triggers-sat - initiate backups on remote clients for Saturday
# Copyright (C) 2001 Ed Cashin
#
# ------------- loop through full backups (just nilda for us)
for host in nilda; do
ssh -T -o "IdentityFile2 /root/.ssh/trigger-full" $host
done
# ------------- loop through any incrementals
|