summaryrefslogtreecommitdiffstats
path: root/modules/rust/manifests/user.pp
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-17 00:04:47 -0500
committerJesse Luehrs <doy@tozt.net>2018-11-17 00:04:47 -0500
commitd91388476b64121954aa2b231d366b7cf114705c (patch)
treea2501816bc1a6d16c9a7643ca88abf01964e15d4 /modules/rust/manifests/user.pp
parentd322b5bc8fd9c6adc4571b37fd5ad41a84e8806a (diff)
downloadpuppet-tozt-d91388476b64121954aa2b231d366b7cf114705c.tar.gz
puppet-tozt-d91388476b64121954aa2b231d366b7cf114705c.zip
also bump timeout on rustup
Diffstat (limited to 'modules/rust/manifests/user.pp')
-rw-r--r--modules/rust/manifests/user.pp1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/rust/manifests/user.pp b/modules/rust/manifests/user.pp
index e94a5fd..f06737e 100644
--- a/modules/rust/manifests/user.pp
+++ b/modules/rust/manifests/user.pp
@@ -6,6 +6,7 @@ define rust::user($user=$name) {
command => "rustup default stable",
user => $user,
unless => "rustup show active-toolchain | grep -q stable",
+ timeout => 3600,
require => [
Package["rustup"],
User[$user],