Puppet Class: php::extra::phing::install
- Inherits:
- php::dependencies
- Defined in:
- manifests/extra/phing/install.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 |
# File 'manifests/extra/phing/install.pp', line 1
class php::extra::phing::install inherits php::dependencies
{
wget::fetch {'php::extra::phing::install':
source => 'http://www.phing.info/get/phing-latest.phar',
destination => '/usr/bin/Phing.phar',
chmod => 0755,
}
file {'/usr/bin/phing':
ensure => link,
target => '/usr/bin/Phing.phar',
}
}
|