diff options
author | Christoph Kluenter <ckluente@thoughtworks.com> | 2015-01-29 12:48:36 +0100 |
---|---|---|
committer | Christoph Kluenter <ckluente@thoughtworks.com> | 2015-01-29 12:48:36 +0100 |
commit | 1ce785f50178c185e11a27b3462be340b58fe8f4 (patch) | |
tree | 27c8ce262c387ddd4626ab8f957e6a4cb35558ff /provisioning/modules | |
parent | f8c8dcdbf986cc6b4cb284ad1c1f2a88a8c9b591 (diff) |
don't timeout if download of phantomjs is slow
Diffstat (limited to 'provisioning/modules')
-rw-r--r-- | provisioning/modules/phantomjs/manifests/init.pp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/provisioning/modules/phantomjs/manifests/init.pp b/provisioning/modules/phantomjs/manifests/init.pp index 78ba734c..ba0e15ba 100644 --- a/provisioning/modules/phantomjs/manifests/init.pp +++ b/provisioning/modules/phantomjs/manifests/init.pp @@ -3,6 +3,7 @@ class phantomjs { command => '/usr/bin/wget -O /var/local/phantomjs-1.9.8.tar.bz2 https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.8-linux-x86_64.tar.bz2', creates => '/var/local/phantomjs-1.9.8.tar.bz2', notify => Exec['unpack_phantomjs'], + timeout => '0', } exec{'unpack_phantomjs': command => '/bin/tar xvfj phantomjs-1.9.8.tar.bz2', |