Search found 4 matches

by svenglar
22 Nov 2015, 20:38
Forum: Extension scripts
Topic: [PP-SCRIPT] update_kodi
Replies: 5
Views: 5727

Re: [PP-SCRIPT] update_kodi

Release v1.1.1 is now available.

https://github.com/natemccurdy/nzbget-update_kodi

It fixes some formatting issues in the description comments that was causing the description to not display correctly in NZBGet's web UI.
by svenglar
22 Nov 2015, 20:01
Forum: Extension scripts
Topic: [PP-SCRIPT] update_kodi
Replies: 5
Views: 5727

Re: [PP-SCRIPT] update_kodi

The reason you're seeing that message is because of this check to see if Kodi is running: kodi_running="$(/usr/bin/pgrep kodi.bin)" if [[ -z $kodi_running ]]; then echo "[DETAIL] Kodi is not running; skipping update" exit $SKIP fi If Kodi is not running, then I skip the check. There's two reasons fo...
by svenglar
07 Nov 2015, 23:10
Forum: Extension scripts
Topic: [PP-SCRIPT] update_kodi
Replies: 5
Views: 5727

[PP-SCRIPT] update_kodi

This is a very simple script that will hit Kodi's HTTP API to trigger a refresh of the video library: https://github.com/natemccurdy/nzbget-update_kodi In order to use this, the "Allow remote control via HTTP" setting under "web server" must be enabled. It works best when triggered after video files...
by svenglar
03 Aug 2015, 21:00
Forum: Extension scripts
Topic: Init script For Linux (Running NZBGet On Boot)
Replies: 4
Views: 11161

Re: Upstart Script For Ubuntu (Running NZBGet On Boot)

Good stuff, but I just wanted to point out that this is not an Upstart script. What you have here is an init.d/sysvinit/init script. Ubuntu, depending on the version, can handle both Upstart and sysvinit scripts. Upstart scripts go in /etc/init/ and sysvinit scripts go in /etc/init.d/ For anyone rea...