mirror of
https://github.com/YunoHost-Apps/diaspora_ynh.git
synced 2024-09-03 18:26:13 +02:00
25 lines
649 B
Bash
25 lines
649 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Retrieve arguments
|
|
domain=$(ynh_app_setting_get --app $app --key domain)
|
|
admin=$(ynh_app_setting_get --app $app --key admin)
|
|
final_path=$(ynh_app_setting_get --app $app --key final_path)
|
|
|
|
ynh_abort_if_errors
|
|
|
|
# nothing to do yet!!
|