mirror of
https://github.com/YunoHost-Apps/chatonsinfos_ynh.git
synced 2024-09-03 18:15:58 +02:00
11 lines
378 B
Bash
11 lines
378 B
Bash
#!/bin/bash
|
|
|
|
source /etc/yunohost/apps/chatonsinfos/scripts/_common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
[ "${YNH_APP_INSTANCE_NAME}" == "chatonsinfos" ] && exit 0
|
|
|
|
install_dir=/var/www/chatonsinfos/
|
|
ynh_secure_remove --file="$install_dir/public/${YNH_APP_INSTANCE_NAME}.properties"
|
|
|
|
sed -i "/^subs\.${YNH_APP_INSTANCE_NAME} =/d" "$install_dir/public/organization.properties"
|