From 4bc4d68d5d089ea213f5ad4c734c393ad593f77a Mon Sep 17 00:00:00 2001 From: Tobias Herre Date: Thu, 10 Dec 2020 20:25:47 +0100 Subject: [PATCH] Set timeout to 1800 seconds for pre-installer --- wmde-odoo/manifests/init.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmde-odoo/manifests/init.pp b/wmde-odoo/manifests/init.pp index 0cfdc6f..f4a83c7 100644 --- a/wmde-odoo/manifests/init.pp +++ b/wmde-odoo/manifests/init.pp @@ -129,13 +129,13 @@ inherits odoo::params { } - exec {"install_pre": command => "/bin/ls > /dev/null && $preenv && $pip_cmd install -r $odoo_systemdir/requirements.txt", require => [ Vcsrepo["$odoo_systemdir"], Package[$prepkg], - ] + ], + timeout => 1800, } }