diff options
author | Daniil Baturin <daniil@vyos.io> | 2023-11-06 16:25:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-06 16:25:52 +0000 |
commit | 8e2429ebddfcc612b4d232ac81634e2bc9d1da5a (patch) | |
tree | 2650cc25f5ef4d492e2e793eacd97e515cf08277 /src/validators/ddclient-protocol | |
parent | d8a71978b4628e30b25346f4ff690e8705020408 (diff) | |
parent | 50c506a9be56b548a8d461f3e019165c384f49d3 (diff) | |
download | vyos-1x-8e2429ebddfcc612b4d232ac81634e2bc9d1da5a.tar.gz vyos-1x-8e2429ebddfcc612b4d232ac81634e2bc9d1da5a.zip |
Merge pull request #2438 from indrajitr/ddclient-bump-311
ddclient: T5708: Upgrade to ddclient 3.11.1
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 bc6826120..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 -vE 'nsupdate|cloudns' | 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" |