Set timeout to 1800 seconds for pre-installer

This commit is contained in:
Tobias Herre 2020-12-10 20:25:47 +01:00
parent e7ff039400
commit 4bc4d68d5d
1 changed files with 2 additions and 2 deletions

View File

@ -129,13 +129,13 @@ inherits odoo::params {
} }
exec {"install_pre": exec {"install_pre":
command => "/bin/ls > /dev/null && $preenv && $pip_cmd install -r $odoo_systemdir/requirements.txt", command => "/bin/ls > /dev/null && $preenv && $pip_cmd install -r $odoo_systemdir/requirements.txt",
require => [ require => [
Vcsrepo["$odoo_systemdir"], Vcsrepo["$odoo_systemdir"],
Package[$prepkg], Package[$prepkg],
] ],
timeout => 1800,
} }
} }