Skip to content

Commit

Permalink
Merge pull request redhat-openstack#294 from bogdando/fix_MODULES-1650
Browse files Browse the repository at this point in the history
Add retries for non transient file transfer errors
  • Loading branch information
cmurphy committed Jan 15, 2015
2 parents b39952a + 966e0b5 commit 384892a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manifests/install/rabbitmqadmin.pp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
staging::file { 'rabbitmqadmin':
target => '/var/lib/rabbitmq/rabbitmqadmin',
source => "${protocol}://${default_user}:${default_pass}@localhost:${management_port}/cli/rabbitmqadmin",
curl_option => '-k --noproxy localhost',
curl_option => '-k --noproxy localhost --retry 30 --retry-delay 6',
timeout => '180',
wget_option => '--no-proxy',
require => [
Class['rabbitmq::service'],
Expand Down

0 comments on commit 384892a

Please sign in to comment.