summaryrefslogtreecommitdiff
path: root/provisioning/modules/phantomjs/manifests/init.pp
blob: 52500f4819f0835aa385ba7d7e21e9e0381d16fe (plain)
1
2
3
4
5
6
7
8
9
10
11
# install phantomjs for unit tests
# we ship our local copy of phantomjs
# because downloading phantomjs fails regularly
class phantomjs {
  file{'/usr/local/bin/phantomjs':
    source => 'puppet:///modules/phantomjs/phantomjs',
    owner  => 'root',
    group  => 'root',
    mode   => '0755',
  }
}