Kodi Community Forum
[RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Service Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=152)
+---- Thread: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. (/showthread.php?tid=120232)

Pages: 1 2 3 4


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - queeup - 2015-02-19

I will fix that. I will also try not to break your fix.


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - tatowaki - 2015-02-19

Hi. The addon suddenly stopped working, even after several machine restarts.
I checked the kodi log and all I could find was "Service already started" when cold booted. Checked addon log and no trace since several days ago.

I saw a file named "inadyn.pid" having more or less the same date (16 Feb) than the last succesful date inadyn addon last succesfully worked.
And that was it... The machine had an expected reboot that day and the addon wrongly thought service was already running...

You should delete inadyn.pid on boot or just ignore it on boot, or the addon won't work unless you manually delete the inady.pid file if the machine hangs/reboots unexpectedly.

Regards


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - queeup - 2015-02-19

Yes you are right. Sometimes inadyn.pid hang there and creating problem. I need to check that deeply.

For dirty fix just stop service from kodi add-on settings then erase pid file. Now you can start it again inadyn service.

I had pic cleaner code once but after inadyn developer added pid remover to inadyn I decided to remove from add-on. I think good idea to add it back just in case...


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - tatowaki - 2015-02-19

Great addon btw Wink This is a must-have one for anyone having dynamic IPs and accesing remotely to the HTPC.
Thanks to your addon I can add torrents from work and so ehehehe

I'll try adding a rm command on Kodi's autoexec so it deletes the file on boot. Let's hope this prevents further problems until you update the addon.

Again, thanks for your work Wink


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - queeup - 2015-02-20

service.inadyn: updated to v2.0.10:
Code:
-RPi 2 support (thanks to @minoas)
-check if process exist. If not exist remove pid file
-better kill by pid process



RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - minoas - 2015-02-21

(2015-02-20, 13:11)queeup Wrote: -RPi 2 support (thanks to @minoas)

Bug report 2
Checking the diff on service.py I did notice this:

Code:
62      self.INADYN_EXEC = '%s/bin/inadyn.armv6l''

Which will translate the self.INADYN_EXEC = '%s/bin/inadyn.armv6l

I am pretty sure your intention was to replace %s with the path:

Code:
self.INADYN_EXEC = '%s/bin/inadyn.armv6l'% (__path__)



RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - queeup - 2015-02-22

You are rescuing my but Smile thank you.

Lol at the end I break your fix. Sorry...


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - queeup - 2015-02-22

service.inadyn: updated to v2.0.11:
Code:
-fix inadyn exec path (thanks to @minoas)



RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - minoas - 2015-02-22

Don't mention it I know how hard it is to develop without the hardware to test it.

With the lack of supplies on Rpi2 I don't think many people actually used my patch anyway.

You should consider changing the if statement to something like

Code:
if 'arm' in os.usname()[4]:

To make it more generic.Considering that newer boards will be using newer arm instructions that are fully compatible v6 version.
The above can only break if someone releases a board with older architecture than Pi1, which is highly unlikely.

At any rate this is not a critical change just makes it more future proof.


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - queeup - 2015-02-22

You are totally right. I should do future compatibility. I will do that in next version.

I hope everything OK for you now. Anytime you can suggest or bug report. I will be glad to hear.


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - queeup - 2015-03-07

service.inadyn: updated to v2.0.12
Code:
-arm support instead of just RPi (thanks to @minoas)
-proper way to start & stop service
-use waitForAbort instead abortRequested
-cosmetic



RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - surfparadise - 2015-04-29

Thi addon is working with OpenElec on raspberry 2? Is it tested?

Thank you
Best Regards


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - queeup - 2015-04-30

Yes. It's working with Rp2.


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - kimme - 2015-06-17

This is an excellent addon, and it even works with http://freedns.afraid.org/ with my Pi2


RE: [RELEASE] INADYN Service Add-on - Simple Dynamic DNS client. - haecky - 2015-06-27

I use INADYN on a Kodibuntu Box, but it does not work, I just get a "script error" at startup.

Please help me