1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cinny_ynh.git synced 2024-09-03 18:16:13 +02:00
cinny_ynh/scripts/_common.sh

25 lines
697 B
Bash

#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
#=================================================
# PERSONAL HELPERS
#=================================================
ynh_webpath_is_domain_root () {
local -A args_array=( [p]=path_url= )
local path_url
ynh_handle_getopts_args "$@"
[[ "$path_url" != "/" ]] && [[ "$path_url" != "" ]]
}
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================