Jean-Philippe Pialasse 4c21e412da * Wed Mar 05 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-16.sme
- change key type from service to configuration [SME: 11367]
  cleanup older php and php-fpm keys
- set base php to php84 [SME: 12952]
  fix missing bits for php74 support
2025-03-05 22:52:37 -05:00

11 lines
330 B
Plaintext

{
foreach my $sservice (qw(php)) {
$DB->set_prop($sservice, "type", "configuration") if ${$sservice}{type} eq "service";
}
# delete old php entries
foreach my $sservice (qw(php55 php55-php-fpm php56 php56-php-fpm php70 php70-php-fpm php71 php71-php-fpm)) {
my $popd = $DB->get($sservice) or next;
$popd->delete;
}
}