From 1910fb361ce24ca36167c7197997fde380063b8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 11 Mar 2019 14:24:24 +0100 Subject: [PATCH] Add perl modules to install instructions --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 055b3c3..eba1a90 100644 --- a/README.md +++ b/README.md @@ -71,17 +71,19 @@ INSTALLATION: cp sample-etc_rc.d_init.d_ddclient.alpine /etc/init.d/ddclient ## enable automatic startup when booting rc-update add ddclient - ## make sure you have perl installed + ## make sure you have perl installed apk add perl ## start the first time by hand rc-service ddclient start - + ## For those using Ubuntu style rc files and using daemon-mode: cp sample-etc_rc.d_init.d_ddclient.ubuntu /etc/init.d/ddclient ## enable automatic startup when booting update-rc.d ddclient defaults - ## make sure you have perl installed - apt-get install perl + ## make sure you have perl and the required modules installed + apt-get install perl libdata-validate-ip-perl + ## if you plan to use cloudflare or feedns you need the perl json module + apt-get install libjson-any-perl ## start the first time by hand service ddclient start