/usr/share/bug/php7.2-bcmath/script is in php7.2-bcmath 7.2.3-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/sh
MATCH="^[[:space:]]*($|;)"
echo "==== Additional PHP 7.2 information ====" >&3
echo "" >&3
echo "++++ PHP @PHP_VERSION SAPI (php7.2query -S): ++++" >&3
/usr/sbin/php7.2query -S >&3
echo "" >&3
echo "++++ PHP 7.2 Extensions (php7.2query -M -v): ++++" >&3
/usr/sbin/php7.2query -M -v >&3
echo "" >&3
echo "++++ Configuration files: ++++" >&3
for dsoname in bcmath; do
inifile=${dsoname}.ini
echo "**** /etc/php/7.2/mods-available/$dsoname.ini ****" >&3
grep -Ev "$MATCH" "/etc/php/7.2/mods-available/$dsoname.ini" >&3
echo "" >&3
done
|