dbfc8381c7
Some of the packages specified in the manifest have slightly different names on Xenial than their Trusty era counterparts. In some cases these were already dependencies of other packages we're installing and were specified unnecessarily so we can just remove them from the manifest. In some cases there are virtual packages which match the old and new names so we can just use those instead and ease future maintenance as well. In some cases the old package name was actually a dummy transitional package already so using the newer name works for both platforms. Change-Id: Ib80fa6becffe4f76a9d14777d5c4a634ebaadb87
15 lines
229 B
Puppet
15 lines
229 B
Puppet
# Class: mediawiki::php
|
|
#
|
|
class mediawiki::php {
|
|
package { ['php',
|
|
'php-cli',
|
|
'php-mysql',
|
|
'php-apc',
|
|
'php-intl',
|
|
'php-openid',
|
|
'php-memcached']:
|
|
ensure => present,
|
|
}
|
|
# TODO: apc configuration
|
|
}
|