Merge pull request #4 from ms264556/dev

fix acme.sh PR shfmt failure
This commit is contained in:
kchiem
2024-11-13 12:04:16 -08:00
committed by GitHub

View File

@@ -65,7 +65,6 @@ ruckus_deploy() {
_debug RUCKUS_USER "$RUCKUS_USER"
_secure_debug RUCKUS_PASS "$RUCKUS_PASS"
export HTTPS_INSECURE=1
export ACME_HTTP_NO_REDIRECTS=1
_info "Discovering the login URL"
@@ -135,11 +134,11 @@ ruckus_deploy() {
}
_response_code() {
< "$HTTP_HEADER" _egrep_o "^HTTP[^ ]* .*$" | cut -d " " -f 2-100 | tr -d "\f\n" | _egrep_o "^[0-9]*"
_egrep_o <"$HTTP_HEADER" "^HTTP[^ ]* .*$" | cut -d " " -f 2-100 | tr -d "\f\n" | _egrep_o "^[0-9]*"
}
_response_header() {
< "$HTTP_HEADER" grep -i "^$1:" | cut -d ':' -f 2- | tr -d "\r\n\t "
grep <"$HTTP_HEADER" -i "^$1:" | cut -d ':' -f 2- | tr -d "\r\n\t "
}
_response_cookie() {