mirror of
https://gh.wpcy.net/https://github.com/Chassis/puppet-wp.git
synced 2026-04-27 09:10:20 +08:00
9 lines
204 B
Puppet
9 lines
204 B
Puppet
# A class for parameters we might need to use.
|
|
class wp::params {
|
|
$user = 'www-data'
|
|
|
|
$php_package = $::operatingsystem ? {
|
|
/^(Debian|Ubuntu)$/ => 'php5-cli',
|
|
default => 'php-cli',
|
|
}
|
|
}
|