This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
getssl
mirror of
https://github.com/srvrco/getssl
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
51
Wiki
Activity
Browse Source
added manual dns examples
pull/111/head
srvrco
9 years ago
parent
e7d187b983
commit
c76fe01d30
2 changed files
with
14 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
dns_scripts/dns_add_manual
+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..."
Write
Preview
Loading…
Cancel
Save