mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-08 15:31:45 +00:00
81 lines
2.0 KiB
Bash
81 lines
2.0 KiB
Bash
#!/bin/bash
|
|
|
|
#Nsd_ZoneFile="/etc/nsd/zones/example.com.zone"
|
|
#Nsd_Command="sudo nsd-control reload"
|
|
#Nsd_ZonesDir="/etc/nsd/zones"
|
|
|
|
# args: fulldomain txtvalue
|
|
dns_nsd_add() {
|
|
fulldomain=$1
|
|
txtvalue=$2
|
|
ttlvalue=300
|
|
|
|
Nsd_ZoneFile="${Nsd_ZoneFile:-$(_readdomainconf Nsd_ZoneFile)}"
|
|
Nsd_Command="${Nsd_Command:-$(_readdomainconf Nsd_Command)}"
|
|
Nsd_ZonesDir="${Nsd_ZonesDir:-$(_readdomainconf Nsd_ZonesDir)}"
|
|
|
|
|
|
# Arg checks
|
|
if [ -n "$Nsd_ZonesDir" ]; then
|
|
Nsd_ZoneFile="$Nsd_ZonesDir/$fulldomain.zone"
|
|
fi
|
|
|
|
if [ -z "$Nsd_ZoneFile" ] || [ -z "$Nsd_Command" ]; then
|
|
Nsd_ZoneFile=""
|
|
Nsd_Command=""
|
|
_err "Specify ENV vars Nsd_ZoneFile and Nsd_Command"
|
|
return 1
|
|
fi
|
|
|
|
if [ ! -f "$Nsd_ZoneFile" ]; then
|
|
Nsd_ZoneFile=""
|
|
Nsd_Command=""
|
|
_err "No such file: $Nsd_ZoneFile"
|
|
return 1
|
|
fi
|
|
|
|
if [ -n "$Nsd_ZonesDir" ]; then
|
|
Nsd_ZoneFile="$Nsd_ZonesDir/$fulldomain.zone"
|
|
_cleardomainconf Nsd_ZoneFile
|
|
_savedomainconf Nsd_Command "$Nsd_Command"
|
|
_savedomainconf Nsd_ZonesDir "$Nsd_ZonesDir"
|
|
else
|
|
_cleardomainconf Nsd_ZonesDir
|
|
_savedomainconf Nsd_ZoneFile "$Nsd_ZoneFile"
|
|
_savedomainconf Nsd_Command "$Nsd_Command"
|
|
fi
|
|
|
|
echo "$fulldomain. $ttlvalue IN TXT \"$txtvalue\"" >>"$Nsd_ZoneFile"
|
|
_info "Added TXT record for $fulldomain"
|
|
_debug "Running $Nsd_Command"
|
|
if eval "$Nsd_Command"; then
|
|
_info "Successfully updated the zone"
|
|
return 0
|
|
else
|
|
_err "Problem updating the zone"
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
# args: fulldomain txtvalue
|
|
dns_nsd_rm() {
|
|
fulldomain=$1
|
|
txtvalue=$2
|
|
ttlvalue=300
|
|
|
|
Nsd_ZoneFile="${Nsd_ZoneFile:-$(_readdomainconf Nsd_ZoneFile)}"
|
|
Nsd_Command="${Nsd_Command:-$(_readdomainconf Nsd_Command)}"
|
|
Nsd_ZonesDir="${Nsd_ZonesDir:-$(_readdomainconf Nsd_ZonesDir)}"
|
|
|
|
sed -i "/$fulldomain. $ttlvalue IN TXT \"$txtvalue\"/d" "$Nsd_ZoneFile"
|
|
_info "Removed TXT record for $fulldomain"
|
|
_debug "Running $Nsd_Command"
|
|
if eval "$Nsd_Command"; then
|
|
_info "Successfully reloaded NSD "
|
|
return 0
|
|
else
|
|
_err "Problem reloading NSD"
|
|
return 1
|
|
fi
|
|
}
|