#!/bin/bash
# Copyright (C) 2000-2015 Synology Inc. All rights reserved.

PIDFile=/run/php-fpm/php56-fpm.pid

[ -s $PIDFile ] && kill -9 "$(cat $PIDFile)"

exit 0
