diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-01 08:20:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 08:20:02 +0100 |
commit | a6d4dd18e256c4bb1b62f53209b592468d499766 (patch) | |
tree | 697688318da1afeb6e4446cbdf036df707ae1375 /src/validators | |
parent | 12957f9f1aa4ab35c460c03dfb3e213639b25a71 (diff) | |
parent | 2d9b0055d1235f377bd2bf392ee48e4363448eb4 (diff) | |
download | vyos-1x-a6d4dd18e256c4bb1b62f53209b592468d499766.tar.gz vyos-1x-a6d4dd18e256c4bb1b62f53209b592468d499766.zip |
Merge pull request #2554 from indrajitr/ddclient-update-20231128
ddclient: T5791: Update dynamic dns configuration path for consistency
Diffstat (limited to 'src/validators')
-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 8f455e12e..ce5efbd52 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 -vE 'nsupdate|cloudns|porkbun' | grep -qw $1 +ddclient -list-protocols | grep -vE '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" |