Re: Need check script for NO-IP client
If your system is a "pure" debian, move your script (let's say noip2) to the directory /etc/init.d/
Always be sure it is executable:
Add the symbolic links using the Debian-specific command update-rc.d:
That's all !
If your system is a "pure" debian, move your script (let's say noip2) to the directory /etc/init.d/
Always be sure it is executable:
Code:
chmod 755 /etc/init.d/noip2
Code:
update-rc.d noip2 defaults
Comment