- 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
11 lines
330 B
Plaintext
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;
|
|
}
|
|
}
|