mirror of
https://github.com/YunoHost-Apps/forgejo_ynh.git
synced 2024-09-03 18:36:26 +02:00
20 lines
416 B
Text
20 lines
416 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# IMPORT GENERIC HELPERS
|
||
|
source /usr/share/yunohost/helpers
|
||
|
|
||
|
pwd=$(dirname $0)
|
||
|
filename=$(basename $0)
|
||
|
|
||
|
# Set vars for following script
|
||
|
|
||
|
# The file name is <priority>-<app>
|
||
|
app=${filename#*-}
|
||
|
|
||
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
||
|
path=$(ynh_app_setting_get --app=$app --key=path)
|
||
|
|
||
|
# Load common variables and helpers
|
||
|
source ${pwd}/../../apps/${app}/scripts/_common.sh
|
||
|
|
||
|
synchronize_users
|