mirror of
https://github.com/YunoHost-Apps/my_capsule_ynh.git
synced 2024-09-03 19:46:21 +02:00
27 lines
861 B
Bash
27 lines
861 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# COMMON VARIABLES
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# PERSONAL HELPERS
|
|
#=================================================
|
|
|
|
_ynh_add_gemserv_config() {
|
|
ynh_add_config --template="server.toml" --destination="/etc/gemserv/config.d/$domain.toml"
|
|
ynh_systemd_action --service_name=gemserv --action=reload
|
|
}
|
|
|
|
_ynh_remove_gemserv_config() {
|
|
ynh_secure_remove --file="/etc/gemserv/config.d/$domain.toml"
|
|
ynh_systemd_action --service_name=gemserv --action=reload
|
|
}
|
|
|
|
#=================================================
|
|
# EXPERIMENTAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# FUTURE OFFICIAL HELPERS
|
|
#=================================================
|