summaryrefslogtreecommitdiff
path: root/provisioning/modules/phantomjs
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-06-28 15:26:41 +0200
committervarac <varacanero@zeromail.org>2016-06-28 15:26:41 +0200
commit1cf3d16637e0a128c3e12236614cc0cd4f40dfc7 (patch)
treed45e9415f06950b0c8759cae02da96a72a93c44e /provisioning/modules/phantomjs
parent9a803347cbc4cb113d3d7a5c2eb44817be7bb57b (diff)
ship our local copy of phantomjs
Diffstat (limited to 'provisioning/modules/phantomjs')
-rwxr-xr-xprovisioning/modules/phantomjs/files/phantomjsbin0 -> 67932064 bytes
-rw-r--r--provisioning/modules/phantomjs/manifests/init.pp25
2 files changed, 7 insertions, 18 deletions
diff --git a/provisioning/modules/phantomjs/files/phantomjs b/provisioning/modules/phantomjs/files/phantomjs
new file mode 100755
index 00000000..d72e801c
--- /dev/null
+++ b/provisioning/modules/phantomjs/files/phantomjs
Binary files differ
diff --git a/provisioning/modules/phantomjs/manifests/init.pp b/provisioning/modules/phantomjs/manifests/init.pp
index 8a10de81..52500f48 100644
--- a/provisioning/modules/phantomjs/manifests/init.pp
+++ b/provisioning/modules/phantomjs/manifests/init.pp
@@ -1,22 +1,11 @@
# install phantomjs for unit tests
+# we ship our local copy of phantomjs
+# because downloading phantomjs fails regularly
class phantomjs {
- package{['tar','bzip2']:}
-
- exec{'download_phantomjs':
- command => '/usr/bin/wget -O /var/local/phantomjs-2.1.1.tar.bz2 https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2',
- creates => '/var/local/phantomjs-2.1.1.tar.bz2',
- notify => Exec['unpack_phantomjs'],
- timeout => '0',
- }
- exec{'unpack_phantomjs':
- command => '/bin/tar xvfj phantomjs-2.1.1.tar.bz2',
- cwd => '/var/local/',
- refreshonly => true,
- require => [ Package['tar'], Package['bzip2'] ],
- notify => Exec['install_phantomjs'],
- }
- exec{'install_phantomjs':
- command => '/usr/bin/install /var/local/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/bin/phantomjs',
- refreshonly => true,
+ file{'/usr/local/bin/phantomjs':
+ source => 'puppet:///modules/phantomjs/phantomjs',
+ owner => 'root',
+ group => 'root',
+ mode => '0755',
}
}