From 195ed5d31bf5dabd5efe4460127002351499eac2 Mon Sep 17 00:00:00 2001 From: intrigeri Date: Wed, 29 Jun 2016 17:39:14 +0000 Subject: apt::dist_upgrade: add a timeout parameter (#8). --- manifests/dist_upgrade.pp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'manifests') diff --git a/manifests/dist_upgrade.pp b/manifests/dist_upgrade.pp index 19c031e..e5475fc 100644 --- a/manifests/dist_upgrade.pp +++ b/manifests/dist_upgrade.pp @@ -1,8 +1,13 @@ -class apt::dist_upgrade { +# Parameters: +# - timeout: specified in seconds +class apt::dist_upgrade ( + $timeout = 300, +) { exec { 'apt_dist-upgrade': command => '/usr/bin/apt-get -q -y -o \'DPkg::Options::=--force-confold\' dist-upgrade', refreshonly => true, + timeout => $timeout, before => Exec['apt_updated'] } -- cgit v1.2.3