diff options
author | Christian Breunig <christian@breunig.cc> | 2023-05-08 08:34:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 08:34:23 +0200 |
commit | 43b4d30ed0298565ce7cf891fbd72c5a7484dac6 (patch) | |
tree | bff8d7972f8ab18a7123abecd52a437b3273c881 /src | |
parent | aaa98de536cb1b9d6ab5a18341a56543b5b57ce1 (diff) | |
parent | 2f278d4dd00caf2b30b3908545d982062a6eb68d (diff) | |
download | vyos-1x-43b4d30ed0298565ce7cf891fbd72c5a7484dac6.tar.gz vyos-1x-43b4d30ed0298565ce7cf891fbd72c5a7484dac6.zip |
Merge pull request #1964 from indrajitr/ddclient-improvement-round-1
dns: T5144: Improve dynamic DNS validations and completions
Diffstat (limited to 'src')
-rwxr-xr-x | src/completion/list_ddclient_protocols.sh | 17 | ||||
-rwxr-xr-x | src/validators/ddclient-protocol | 24 |
2 files changed, 41 insertions, 0 deletions
diff --git a/src/completion/list_ddclient_protocols.sh b/src/completion/list_ddclient_protocols.sh new file mode 100755 index 000000000..75fb0cf44 --- /dev/null +++ b/src/completion/list_ddclient_protocols.sh @@ -0,0 +1,17 @@ +#!/bin/sh +# +# Copyright (C) 2023 VyOS maintainers and contributors +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 or later as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +echo -n $(ddclient -list-protocols) diff --git a/src/validators/ddclient-protocol b/src/validators/ddclient-protocol new file mode 100755 index 000000000..6f927927b --- /dev/null +++ b/src/validators/ddclient-protocol @@ -0,0 +1,24 @@ +#!/bin/sh +# +# Copyright (C) 2023 VyOS maintainers and contributors +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 or later as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# 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 + +if [ $? -gt 0 ]; then + echo "Error: $1 is not a valid protocol, please choose from the supported list of protocols" + exit 1 +fi + +exit 0 |