Martineau
Part of the Furniture
with duck dns seems that if you enter the address in browser with username and password it just brings up the page saying "ok" so im assuming i'll just need my script to visit the page and it will get the username and password at duckdns' end?
im trying something different, this is my script:
Code:#!/bin/sh wget -q https://www.duckdns.org/update?domains=xxxxx&token=xxxxx -O - >/dev/null if [ $? -eq 0 ]; then /sbin/ddns_custom_updated 1 else /sbin/ddns_custom_updated 0 fi
this is my error:
Code:Command '"./ddns-start"' failed with return code 127 and error message -sh: ./ddns-start: not found.
You probably should be using curl as not sure if earlier non-entware versions of wget supported HTTPS ?
Code:
curl -v "https://www.duckdns.org/update?domains=xxxxx&token=xxxxx"