Browse Source

added manual dns examples

pull/111/head
srvrco 9 years ago
parent
commit
c76fe01d30
2 changed files with 14 additions and 0 deletions
  1. +8
    -0
      dns_scripts/dns_add_manual
  2. +6
    -0
      dns_scripts/dns_del_manual

+ 8
- 0
dns_scripts/dns_add_manual View File

@ -0,0 +1,8 @@
#!/bin/bash
echo "In the DNS, a new TXT record needs to be created for;"
echo "_acme-challenge.${1}"
echo "containing the following value"
echo "$2"
read -p "Press any key to obtain the certificate once the records have been updated..."

+ 6
- 0
dns_scripts/dns_del_manual View File

@ -0,0 +1,6 @@
#!/bin/bash
echo "In the DNS, the following DNS record should be deleted ;"
echo "_acme-challenge.${1}"
read -p "Press any key to obtain the certificate once the records have been updated..."

Loading…
Cancel
Save