home-assistant / hassbian-scripts

Scripts used in the Hassbian image.
Other
123 stars 98 forks source link

duckdns hook.sh 404 #288

Closed calebmah closed 5 years ago

calebmah commented 5 years ago

Hassbian-config version

0.12.0

Suite name

duckdns

Description of problem

hook.sh file is not being created properly. Line 52 curl -so ./hook.sh https://raw.githubusercontent.com/home-assistant/hassbian-scripts/dev/package/opt/hassbian/suites/files/ssl_hook.sh returns a 404.

ludeeus commented 5 years ago

That is correct, it was a bad design, it has been corrected in dev. Install the dev version of hassbian-config or: In /opt/hassbian/suites/duckdns.sh Change line 52 from:

  curl -so ./hook.sh https://raw.githubusercontent.com/home-assistant/hassbian-scripts/dev/package/opt/hassbian/suites/files/ssl_hook.sh

to:

  curl -so ./hook.sh https://raw.githubusercontent.com/home-assistant/hassbian-scripts/master/package/opt/hassbian/suites/files/ssl_hook.sh