/usr/lib/php/php7.2-fpm-reopenlogs is in php7.2-fpm 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 | #!/bin/sh
CONFFILE=/etc/php/7.2/fpm/php-fpm.conf
[ -r /etc/default/php7.2-fpm ] && . /etc/default/php7.2-fpm
CONF_PIDFILE=$(sed -n 's/^[[:space:]]*pid[[:space:]]*=[[:space:]]*//p' $CONFFILE)
PIDFILE=${CONF_PIDFILE:-/run/php/php7.2-fpm.pid}
[ -r "$PIDFILE" ] && kill -USR1 $(cat "$PIDFILE") > /dev/null
exit 0
|