#!/bin/sh
# Helper script to provide legacy php5-fpm service options not 
# directly supported by systemd

# Check that we are root ... so non-root users stop here
test $EUID = 0  ||  exit 4
/etc/init.d/php8.1-fpm rotate
RETVAL=$?
exit $RETVAL
