This commit is contained in:
Geoffrey Frogeye 2018-01-30 19:08:48 +01:00
parent cbf1731632
commit b9f05ee89f

View file

@ -365,9 +365,9 @@ machines_net_help() { machines_network_help "$@"; }
machines_n_help() { machines_network_help "$@"; } machines_n_help() { machines_network_help "$@"; }
function machines_update-all { function machines_update-all {
machines_list | while read machine; do machines_machine_list | while read machine; do
echo "Updating $machine..." echo "Updating $machine..."
ssh $machine 'machines-update' & ssh $machine 'machines update' &
done done
} }