1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yeswiki_ynh.git synced 2024-09-03 18:05:56 +02:00

Fix check_process

This commit is contained in:
Plumf 2020-05-06 10:35:58 +02:00
parent 06c99463dd
commit b0e6a88739
2 changed files with 5 additions and 5 deletions

View file

@ -27,7 +27,7 @@
upgrade=0 from_commit=65c382d138596fcb32b4c97c39398815a1dcd4e8
backup_restore=1
multi_instance=1
port_already_use=0 (66)
port_already_use=1 (66)
change_url=0
actions=0
config_panel=0

View file

@ -91,11 +91,11 @@ fi
# Change the domain for nginx
if [ $change_domain -eq 1 ]
then
# Delete file checksum for the old conf file location
#ynh_delete_file_checksum --file="$nginx_conf_path"
# Delete file checksum for the old conf file location
ynh_delete_file_checksum --file="$nginx_conf_path"
mv $nginx_conf_path /etc/nginx/conf.d/$new_domain.d/$app.conf
# Store file checksum for the new config file location
#ynh_store_file_checksum --file="/etc/nginx/conf.d/$new_domain.d/$app.conf"
# Store file checksum for the new config file location
ynh_store_file_checksum --file="/etc/nginx/conf.d/$new_domain.d/$app.conf"
fi
#=================================================