Browse Source
Merge pull request #6755 from zbindenp/master
Fix dns_cyon to use correct regex
pull/6453/merge
neil
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
3 deletions
-
dnsapi/dns_cyon.sh
|
|
@ -332,11 +332,11 @@ _cyon_get_response_message() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
_cyon_get_response_status() { |
|
|
_cyon_get_response_status() { |
|
|
_egrep_o '"status":[a-zA-z0-9]*' | cut -d : -f 2 |
|
|
|
|
|
|
|
|
_egrep_o '"status":[a-zA-Z0-9]*' | cut -d : -f 2 |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
_cyon_get_validation_status() { |
|
|
_cyon_get_validation_status() { |
|
|
_egrep_o '"valid":[a-zA-z0-9]*' | cut -d : -f 2 |
|
|
|
|
|
|
|
|
_egrep_o '"valid":[a-zA-Z0-9]*' | cut -d : -f 2 |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
_cyon_get_response_success() { |
|
|
_cyon_get_response_success() { |
|
|
@ -344,7 +344,7 @@ _cyon_get_response_success() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
_cyon_get_environment_change_status() { |
|
|
_cyon_get_environment_change_status() { |
|
|
_egrep_o '"authenticated":[a-zA-z0-9]*' | cut -d : -f 2 |
|
|
|
|
|
|
|
|
_egrep_o '"authenticated":[a-zA-Z0-9]*' | cut -d : -f 2 |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
_cyon_check_if_2fa_missed() { |
|
|
_cyon_check_if_2fa_missed() { |
|
|
|