diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-01 08:17:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 08:17:30 +0100 |
commit | 93038ae22e6e072ffd5c3cdeae49ec7293e5cc1d (patch) | |
tree | d006920ddd3261606461603848930be3b07ec0f0 /src/validators/ddclient-protocol | |
parent | 01fec00f0d662b26262678823bfe4d3cc0d5b574 (diff) | |
parent | 2bbf6253038f1751b9b1776a8938c85135ffdca5 (diff) | |
download | vyos-1x-93038ae22e6e072ffd5c3cdeae49ec7293e5cc1d.tar.gz vyos-1x-93038ae22e6e072ffd5c3cdeae49ec7293e5cc1d.zip |
Merge pull request #2555 from indrajitr/sagitta-ddclient-backports
ddclient: T5573,T5574,T5612,T5708: Backport ddclient related changes
Diffstat (limited to 'src/validators/ddclient-protocol')
-rwxr-xr-x | src/validators/ddclient-protocol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validators/ddclient-protocol b/src/validators/ddclient-protocol index 6f927927b..8f455e12e 100755 --- a/src/validators/ddclient-protocol +++ b/src/validators/ddclient-protocol @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -ddclient -list-protocols | grep -qw $1 +ddclient -list-protocols | grep -vE 'nsupdate|cloudns|porkbun' | grep -qw $1 if [ $? -gt 0 ]; then echo "Error: $1 is not a valid protocol, please choose from the supported list of protocols" |