12 lines
306 B
Bash
Executable File
12 lines
306 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test "x$1" = xdeploy_challenge; then
|
|
echo "Add the following record and press enter to continue:"
|
|
echo "_acme-challenge.$2. TXT $4"
|
|
read dummy
|
|
elif test "x$1" = xclean_challenge; then
|
|
echo "Remove the record and press enter to continue:"
|
|
echo "_acme-challenge.$2. TXT $4"
|
|
read dummy
|
|
fi
|