Merge "Further remote puppet fixes"

This commit is contained in:
Jenkins 2014-04-17 20:44:38 +00:00 committed by Gerrit Code Review
commit 65779fc95d
2 changed files with 12 additions and 11 deletions

View File

@ -18,5 +18,5 @@ class openstack_project::params {
fail("Unsupported osfamily: ${::osfamily} The 'openstack_project' module only supports osfamily Debian or RedHat (slaves only).")
}
}
$allowed_ssh_command = 'timeout -s 9 30 puppet agent --test'
$allowed_ssh_command = 'timeout -s 9 30m puppet agent --test'
}

View File

@ -16,14 +16,16 @@
# This function will properly fail if puppet is disabled on the target host
function run_ssh {
ssh -o StrictHostKeyChecking=no root@$1 <%= scope.lookupvar('openstack_project::params::allowed_ssh_command') %>
ret=$?
# Did we timeout
if [ $ret = 124 ]; then
echo "TODO: Timeout instead of other failure. Report this differently."
fi
return $ret
echo ssh -o StrictHostKeyChecking=no root@$1 <%= scope.lookupvar('openstack_project::params::allowed_ssh_command') %>
ssh -o StrictHostKeyChecking=no root@$1 <%= scope.lookupvar('openstack_project::params::allowed_ssh_command') %>
}
export -f run_ssh
function brazenly_run_ssh {
run_ssh $1
return 0
}
export -f brazenly_run_ssh
FULL_LIST=$(puppet cert list -a | grep '^\+' | awk '{print $2}' | sed 's/"//g')
OVERRIDE_LIST="
@ -42,11 +44,10 @@ cd /opt/config/production
# Run things that need to be ordered
for host in $OVERRIDE_LIST; do
if ! run_ssh $host ; then
if run_ssh $host ; then
break
fi
done
# Now, run everyone else
export -f run_ssh
echo $FILTERED_LIST | xargs -P 10 -n 1 bash -c run_ssh
echo $FILTERED_LIST | xargs -d' ' -P 10 -n 1 -I{} bash -c "brazenly_run_ssh {}"