Skip to content
Snippets Groups Projects

NETID-238 Dockerize PHP NetID RPC

Merged Matt Trefilek requested to merge TREFILEK/rpc-netid-php:NETID-238 into master
8 files
+ 51
78
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 0
22
# Set path globally
Exec {
path => [ "/usr/local/sbin", "/usr/local/bin", "/usr/sbin", "/usr/bin", "/sbin", "/bin" ],
}
# Install phpunit
package { 'phpunit':
ensure => installed,
}
# Install XDebug
package { 'php5-xdebug':
ensure => installed,
}
# Download phing
exec { 'download-phing':
cwd => '/vagrant',
command => 'wget http://www.phing.info/get/phing-latest.phar -O phing.phar',
creates => '/vagrant/phing.phar'
}
Loading