mirror of
				https://github.com/hiskang/acme.sh
				synced 2025-10-30 18:07:15 +00:00 
			
		
		
		
	Add DNS API for ClouDNS
This commit is contained in:
		
							parent
							
								
									a15f87ae39
								
							
						
					
					
						commit
						5df2ca3ef3
					
				| @ -14,7 +14,7 @@ dns_cloudns_add() { | |||||||
|     return 1 |     return 1 | ||||||
|   fi |   fi | ||||||
| 
 | 
 | ||||||
|   zone="$(_dns_cloudns_get_zone_name $1)" |   zone="$(_dns_cloudns_get_zone_name "$1")" | ||||||
|   if [ -z "$zone" ]; then |   if [ -z "$zone" ]; then | ||||||
|     _err "Missing DNS zone at ClouDNS. Please log into your control panel and create the required DNS zone for the initial setup." |     _err "Missing DNS zone at ClouDNS. Please log into your control panel and create the required DNS zone for the initial setup." | ||||||
|     return 1 |     return 1 | ||||||
| @ -29,7 +29,6 @@ dns_cloudns_add() { | |||||||
|   _debug record "$record" |   _debug record "$record" | ||||||
|   _debug record_id "$record_id" |   _debug record_id "$record_id" | ||||||
|    |    | ||||||
|    |  | ||||||
|   if [ -z "$record_id" ]; then |   if [ -z "$record_id" ]; then | ||||||
|     _info "Adding the TXT record for $1" |     _info "Adding the TXT record for $1" | ||||||
|     _dns_cloudns_http_api_call "dns/add-record.json" "domain-name=$zone&record-type=TXT&host=$host&record=$record&ttl=60" |     _dns_cloudns_http_api_call "dns/add-record.json" "domain-name=$zone&record-type=TXT&host=$host&record=$record&ttl=60" | ||||||
| @ -60,7 +59,7 @@ dns_cloudns_rm() { | |||||||
|   fi |   fi | ||||||
| 
 | 
 | ||||||
|   if [ -z "$zone" ]; then |   if [ -z "$zone" ]; then | ||||||
|     zone="$(_dns_cloudns_get_zone_name $1)" |     zone="$(_dns_cloudns_get_zone_name "$1")" | ||||||
|     if [ -z "$zone" ]; then |     if [ -z "$zone" ]; then | ||||||
|       _err "Missing DNS zone at ClouDNS. Please log into your control panel and create the required DNS zone for the initial setup." |       _err "Missing DNS zone at ClouDNS. Please log into your control panel and create the required DNS zone for the initial setup." | ||||||
|       return 1 |       return 1 | ||||||
| @ -118,7 +117,7 @@ _dns_cloudns_get_zone_name() { | |||||||
|       return 1 |       return 1 | ||||||
|     fi |     fi | ||||||
| 
 | 
 | ||||||
|     _debug zoneForCheck $zoneForCheck |     _debug zoneForCheck "$zoneForCheck" | ||||||
| 
 | 
 | ||||||
|     _dns_cloudns_http_api_call "dns/get-zone-info.json" "domain-name=$zoneForCheck" |     _dns_cloudns_http_api_call "dns/get-zone-info.json" "domain-name=$zoneForCheck" | ||||||
| 
 | 
 | ||||||
| @ -127,7 +126,7 @@ _dns_cloudns_get_zone_name() { | |||||||
|       return 0 |       return 0 | ||||||
|     fi |     fi | ||||||
| 
 | 
 | ||||||
|     i=$(expr "$i" + 1) |     i=$(($i+1)) | ||||||
|   done |   done | ||||||
|   return 1 |   return 1 | ||||||
| } | } | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user