You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
582 B
28 lines
582 B
10 months ago
|
#!/bin/bash
|
||
|
|
||
|
if (t_GetPkgRel basesystem | grep -q el9)
|
||
|
then
|
||
|
t_Log "This is a C9 system. Modular php not present. Skipping."
|
||
|
t_CheckExitStatus 0
|
||
|
exit $PASS
|
||
|
fi
|
||
|
|
||
|
t_Log "Running $0 - verify PHP API in phpinfo()"
|
||
|
t_SkipReleaseLessThan 8 'no modularity'
|
||
|
|
||
|
t_EnableModuleStream php:7.3
|
||
|
t_InstallPackage php-cli
|
||
|
|
||
|
t_Log "Executing phpinfo()"
|
||
|
output=$(php -d 'date.timezone=UTC' -r 'phpinfo();')
|
||
|
t_CheckExitStatus $?
|
||
|
|
||
|
API='20180731'
|
||
|
|
||
|
t_Log "Verifying PHP API matches $API"
|
||
|
grep -q "PHP API => $API" <<< $output
|
||
|
t_CheckExitStatus $?
|
||
|
|
||
|
t_RemovePackage php-cli
|
||
|
t_ResetModule php httpd nginx
|