mirror of
https://github.com/YunoHost-Apps/cinny_ynh.git
synced 2024-09-03 18:16:13 +02:00
25 lines
697 B
Bash
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
|
|
#=================================================
|