From 9cb0e06ee659a21ce47d04d555e971a2c57f00fe Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Thu, 30 Aug 2018 20:27:20 +0200 Subject: [PATCH] Higher timeout and two tries for update packages For the yum/apt upgrade exec increase the timeout from the default 5 minutes to 15 minutes and do two tries. Change-Id: I6687e7768862ab0471714392b358ac423f31ef72 --- manifests/repos.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/repos.pp b/manifests/repos.pp index e5677deeb..bfdd72a65 100644 --- a/manifests/repos.pp +++ b/manifests/repos.pp @@ -131,6 +131,8 @@ class openstack_integration::repos { exec { 'update-packages': command => $update_cmd, refreshonly => true, + tries => 2, + timeout => 900, } }