You've seen nothing ;)

This commit is contained in:
Maniack Crudelis 2017-09-07 20:49:12 +02:00 committed by GitHub
parent 6baf1bd7bc
commit 22d9ba284b

View file

@ -1332,10 +1332,10 @@ set_witness_files () {
create_witness_file "/var/log/witnessfile" file create_witness_file "/var/log/witnessfile" file
# Config fpm # Config fpm
if [ -d "/etc/php5" ]; then if [ -d "${lxc_dir}/etc/php5" ]; then
create_witness_file "/etc/php5/fpm/pool.d/witnessfile.conf" file create_witness_file "/etc/php5/fpm/pool.d/witnessfile.conf" file
fi fi
if [ -d "/etc/php/7.0" ]; then if [ -d "${lxc_dir}/etc/php/7.0" ]; then
create_witness_file "/etc/php/7.0/fpm/pool.d/witnessfile.conf" file create_witness_file "/etc/php/7.0/fpm/pool.d/witnessfile.conf" file
fi fi
@ -1383,10 +1383,10 @@ check_witness_files () {
check_file_exist "/var/log/witnessfile" check_file_exist "/var/log/witnessfile"
# Config fpm # Config fpm
if [ -d "/etc/php5" ]; then if [ -d "${lxc_dir}/etc/php5" ]; then
check_file_exist "/etc/php5/fpm/pool.d/witnessfile.conf" file check_file_exist "/etc/php5/fpm/pool.d/witnessfile.conf" file
fi fi
if [ -d "/etc/php/7.0" ]; then if [ -d "${lxc_dir}/etc/php/7.0" ]; then
check_file_exist "/etc/php/7.0/fpm/pool.d/witnessfile.conf" file check_file_exist "/etc/php/7.0/fpm/pool.d/witnessfile.conf" file
fi fi