Browse Source
Merge pull request #4334 from sasburg/patch-1
Added parked_domans
pull/4335/head
neil
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
deploy/cpanel_uapi.sh
|
@ -173,7 +173,7 @@ cpanel_uapi_deploy() { |
|
|
|
|
|
|
|
|
######## Private functions ##################### |
|
|
######## Private functions ##################### |
|
|
|
|
|
|
|
|
# Internal utility to process YML from UAPI - only looks at main_domain and sub_domains |
|
|
|
|
|
|
|
|
# Internal utility to process YML from UAPI - looks at main_domain, sub_domains, addon domains and parked domains |
|
|
#[response] |
|
|
#[response] |
|
|
__cpanel_parse_response() { |
|
|
__cpanel_parse_response() { |
|
|
if [ $# -gt 0 ]; then resp="$*"; else resp="$(cat)"; fi |
|
|
if [ $# -gt 0 ]; then resp="$*"; else resp="$(cat)"; fi |
|
@ -194,7 +194,7 @@ __cpanel_parse_response() { |
|
|
printf("%s%s=%s\n", prefix, $2, $3); |
|
|
printf("%s%s=%s\n", prefix, $2, $3); |
|
|
} |
|
|
} |
|
|
}' | |
|
|
}' | |
|
|
sed -En -e 's/^result\/data\/(main_domain|sub_domains\/-|addon_domains\/-)=(.*)$/\2/p' |
|
|
|
|
|
|
|
|
sed -En -e 's/^result\/data\/(main_domain|sub_domains\/-|addon_domains\/-|parked_domains\/-)=(.*)$/\2/p' |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
# Load parameter by prefix+name - fallback to default if not set, and save to config |
|
|
# Load parameter by prefix+name - fallback to default if not set, and save to config |
|
|