1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ntfy_ynh.git synced 2024-09-03 19:46:27 +02:00
ntfy_ynh/scripts/_common.sh

28 lines
787 B
Bash
Raw Normal View History

2022-11-02 10:16:52 +01:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
#=================================================
# PERSONAL HELPERS
#=================================================
2023-08-25 22:32:20 +02:00
ntfy_setup_source() {
ynh_setup_source -d "$install_dir" -s "$YNH_ARCH"
mkdir -p "$install_dir/data"
chown -R $app:$app "$install_dir"
chmod -R 750 "$install_dir/data"
ynh_secure_remove "$install_dir/client"
ynh_secure_remove "$install_dir/server"
}
2022-11-02 10:16:52 +01:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================