bundles/php: no need to restart php if just installing the base packages
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2020-11-11 08:37:29 +01:00
parent 652fb72ccc
commit d47c39185b
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -16,21 +16,9 @@ def php_packages_with_features(metadata):
version = metadata.get('php/version')
packages = {
f'php{version}': {
'triggers': {
f'svc_systemd:php{version}-fpm:restart',
}
},
f'php{version}-cli': {
'triggers': {
f'svc_systemd:php{version}-fpm:restart',
}
},
f'php{version}-fpm': {
'triggers': {
f'svc_systemd:php{version}-fpm:restart',
}
},
f'php{version}': {},
f'php{version}-cli': {},
f'php{version}-fpm': {},
}
for package in metadata.get('php/packages', set()):