diff options
author | Indrajit Raychaudhuri <irc@indrajit.com> | 2023-04-21 00:51:34 -0500 |
---|---|---|
committer | Indrajit Raychaudhuri <irc@indrajit.com> | 2023-04-21 01:05:14 -0500 |
commit | 0c63c84e505033474368b7842e271ee8614c9e51 (patch) | |
tree | f61ba2f2aaa861bdf7e2fc744660731b732f4296 /src/validators/ddclient-protocol | |
parent | 97ef83ada9c42913bae3c80e0f2432bdf901312a (diff) | |
download | vyos-1x-0c63c84e505033474368b7842e271ee8614c9e51.tar.gz vyos-1x-0c63c84e505033474368b7842e271ee8614c9e51.zip |
dns: T5144: Improve dynamic DNS validations and completions
Apply validations and completions to dynamic DNS protocols supported.
This also opens up additional protocols supported by ddclient 3.10.
Additional details:
- Validation and constraint have been added for interface names as well.
- While at it, the help texts got some copyedit and rewording.
Diffstat (limited to 'src/validators/ddclient-protocol')
-rwxr-xr-x | src/validators/ddclient-protocol | 24 |
1 files changed, 24 insertions, 0 deletions
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 |