2023-08-08 10:25:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-08-29 05:53:09 +02:00
|
|
|
source /etc/yunohost/apps/chatonsinfos/scripts/_common.sh
|
2023-08-08 10:25:41 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2023-11-29 21:43:39 +01:00
|
|
|
[ "${YNH_APP_INSTANCE_NAME}" == "chatonsinfos" ] && exit 0
|
2023-11-29 21:32:15 +01:00
|
|
|
|
2023-08-29 05:53:09 +02:00
|
|
|
install_dir=/var/www/chatonsinfos/
|
2023-11-29 21:43:39 +01:00
|
|
|
ynh_secure_remove --file="$install_dir/public/${YNH_APP_INSTANCE_NAME}.properties"
|
2023-08-29 03:44:51 +02:00
|
|
|
|
2023-11-29 21:43:39 +01:00
|
|
|
sed -i "/^subs\.${YNH_APP_INSTANCE_NAME} =/d" "$install_dir/public/organization.properties"
|