Search found 60 matches

by void.pointer
17 Sep 2015, 03:34
Forum: Support
Topic: Error when running service
Replies: 2
Views: 2604

Re: Error when running service

After some research, it looks like Ubuntu Server v15 switched to "systemd" to manage services. So my upstart script wasn't working anymore. After toying around, I came up with the following nzbget systemd unit: (Named "nzbget.service") [Unit] Description=NZBGet Service [Service] Type=forking ExecSta...
by void.pointer
17 Sep 2015, 02:55
Forum: Support
Topic: Error when running service
Replies: 2
Views: 2604

Error when running service

I have the following upstart script in Ubuntu 15 for nzbget: description "NZBGet upstart script" setuid robert setgid robert start on runlevel [2345] stop on runlevel [016] respawn expect fork script exec nzbget -D end script pre-stop script exec nzbget -Q end script This used to work fine in Ubuntu...
by void.pointer
14 Jun 2015, 21:19
Forum: Support
Topic: Plans for moving away from SourceForge
Replies: 15
Views: 6540

Re: Plans for moving away from SourceForge

For the start I've moved pp-scripts to GitHub. The new GitHub's home for NZBGet related stuff: https://github.com/nzbget. Thanks, this is really good news! I have some recommendations: Setup a .gitattributes file for each of your repositories, and normalize line endings as needed. There is a guide ...
by void.pointer
13 Jun 2015, 15:41
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527649

Re: [PP-Script] VideoSort - better video sorting

I created a mirror of the VideoSort code on github here:
https://github.com/rcdailey/videosort

I am happy to transfer ownership of this to you hugbug should you be interested in it. Otherwise, I will keep this updated as I can for easy upgrading of the videosort script on my server.
by void.pointer
13 Jun 2015, 15:19
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527649

Re: [PP-Script] VideoSort - better video sorting

Would be nice if this was part of nzbget or at the very least in its own github repo somewhere.
by void.pointer
13 Jun 2015, 15:10
Forum: Support
Topic: nzbget history tab getting wiped
Replies: 9
Views: 4631

Re: nzbget history tab getting wiped

Interesting, I am seeing an entirely different way of the queue being cleared. This time it isn't errors:

Image
by void.pointer
07 Jun 2015, 21:46
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527649

Re: [PP-Script] VideoSort - better video sorting

Is this automatically distributed with the NZBGet source code? Is it installed when I do `make install` ?
by void.pointer
06 Jun 2015, 22:08
Forum: Support
Topic: nzbget history tab getting wiped
Replies: 9
Views: 4631

Re: nzbget history tab getting wiped

This seems really fragile. Is there no way to make operations more atomic to avoid corruption, or perhaps create copies prior to writing or something of that nature? The operations are atomic and copies are written too. The problem is the OS reports success and nzbget deletes old files. If in that ...
by void.pointer
06 Jun 2015, 21:54
Forum: Support
Topic: nzbget history tab getting wiped
Replies: 9
Views: 4631

Re: nzbget history tab getting wiped

EDIT: Here is my upstart script that does the backup. So far this is working. description "NZBGet upstart script" setuid robert setgid robert start on runlevel [2345] stop on runlevel [016] respawn expect fork pre-start script cd /home/robert/nzbget exec tar -cvzf queue-$(date +%Y%m%d_%H%M%S).tar.gz...
by void.pointer
06 Jun 2015, 21:51
Forum: Support
Topic: nzbget history tab getting wiped
Replies: 9
Views: 4631

Re: nzbget history tab getting wiped

I don't see any other errors. The stat and queue files are both empty when I cat them.

This seems really fragile. Is there no way to make operations more atomic to avoid corruption, or perhaps create copies prior to writing or something of that nature?

Thanks for the help.