Yes, by HH I mean 8.04 Hardy Heron
Output of mktemp --help is:
mktemp: invalid option -- -
Usage: mktemp [-V] | [-dqtu] [-p prefix] [template]
After seeing this I took a look at the stop portion of the sabnzbdplus script, and all appears to be normal there. So, I figured something must have changed with a recent system update. I'm not clear on the details but it seems that --tmpdir(from my sabnzbdplus script) is not a valid option now for mktemp. After some digging I editted the script as seen below.
Old:
- Code: Select all
TMPFILE="$(mktemp --tmpdir sabnzbdplus.XXXXXXXXXX)"
New:
- Code: Select all
TMPFILE="$(mktemp -t sabnzbdplus.XXXXXXXXXX)"
Now all is well.