Hallo,
leider funktioniert Filebot nach dem Update auf DSM 6.0.1-7393 nicht mehr. Alles funktioniert super, bis es zum Umbenennen/Verschieben geht:
Danach bleibt das Script bei "Clean clutter files and empty folders" hängen...
Anbei mein Filebot-Script, obwohl ich es nicht verändert habe und es daher (eigentlich) nicht die Ursache des Problems sein kann:
Installiert habe ich Filebot 4.7 und Java 1.8.0_91 von rednoah. Beides habe ich schon de- und wieder neuinstalliert. Erfolglos. Selbstverständlich auch schon einen Reboot hinter mir... Ich kann es wirklich nur auf das DSM Update zurückführen, denn vorher lief es ohne Probleme...
Hat einer eine Idee?
Gruß
ZmaD
leider funktioniert Filebot nach dem Update auf DSM 6.0.1-7393 nicht mehr. Alles funktioniert super, bis es zum Umbenennen/Verschieben geht:
Rich (BBCode):
[MOVE] Rename [/volume1/downloads/jd-downloads/xxx/xxx.mkv] to [/volume1/video/Serien/xxx/xxx - Staffel xx/xxx - SxxExx - xxx.mkv]
[MOVE] Failed to rename [/volume1/downloads/jd-downloads/xxx/xxx.mkv]
Processed 0 files
/volume1/downloads/jd-downloads/xxx/xxx.mkv -> /volume1/video/Serien/xxx/xxx - Staffel xx/xxx - SxxExx - xxx.mkv
java.nio.file.AccessDeniedException: /volume1/downloads/jd-downloads/xxx/xxx.mkv -> /volume1/video/Serien/xxx/xxx - Staffel xx/xxx - SxxExx - xxx.mkv
at net.filebot.util.FileUtilities.moveRename(FileUtilities.java:79)
at net.filebot.StandardRenameAction$1.rename(StandardRenameAction.java:17)
at net.filebot.cli.CmdlineOperations.renameAll(CmdlineOperations.java:625)
at net.filebot.cli.CmdlineOperations.renameSeries(CmdlineOperations.java:255)
at net.filebot.cli.CmdlineOperations.rename(CmdlineOperations.java:110)
at net.filebot.cli.ScriptShellBaseClass.rename(ScriptShellBaseClass.java:336)
at Script1$_run_closure72.doCall(Script1.groovy:377)
at Script1.run(Script1.groovy:362)
at net.filebot.cli.ScriptShell.evaluate(ScriptShell.java:62)
at net.filebot.cli.ScriptShell.runScript(ScriptShell.java:72)
at net.filebot.cli.ArgumentProcessor.runScript(ArgumentProcessor.java:114)
at net.filebot.cli.ArgumentProcessor.run(ArgumentProcessor.java:29)
at net.filebot.Main.main(Main.java:120)
Danach bleibt das Script bei "Clean clutter files and empty folders" hängen...
Anbei mein Filebot-Script, obwohl ich es nicht verändert habe und es daher (eigentlich) nicht die Ursache des Problems sein kann:
Rich (BBCode):
#!/bin/sh
PATH=$PATH:/sbin:/bin:/usr/sbin:/usr/bin:/usr/syno/sbin:/usr/syno/bin:/usr/local/sbin:/usr/local/bin
export PATH
# Paths
pathSrc="/volume1/downloads"
pathDest="/volume1/video"
pathSeries="/volume1/video/Serien"
pathMovies="/volume1/video/Filme"
pathMusic="/volume1/video/music"
pathLog="/volume1/BackupLogs/filebot/filebot.log"
pathExclude="/volume1/BackupLogs/filebot/pyload-amc.txt"
# Filebot setup
action=move # options: move, copy, keeplink, symlink, hardlink, test
conflict=skip # options: override, skip, fail, auto
unsorted=y
lang=de
clean=y
skipExtract=y
reportError=y
storeReport=y
artwork=n
music=n
# Filebot formats
serie="{n}/{n} - Staffel {s.pad(2)}/{n} - {s00e00} - {t}"
movie="{n} ({y})"
# Information
XBMC=192.168.xxx.xxx #IP-Adresse
pushover=xxx #api
gmail=xxx:xxx #login:pwd
mailto=xxx
# Command
filebot -script fn:amc -non-strict --log-file "${pathLog}" -r --conflict "${conflict}" --action "${action}" --output "${pathDest}" --lang "${lang}" --def clean="${clean}" mailto="${mailto}" skipExtract="${skipExtract}" excludeList="${pathExclude}" reportError="${reportError}" storeReport="${storeReport}" artwork="${artwork}" unsorted="${unsorted}" gmail="${gmail}" pushover="${pushover}" xbmc="${XBMC}" movieFormat="${pathMovies}/${movie}" seriesFormat="${pathSeries}/${serie}" music="${music}" "${pathSrc}"
Installiert habe ich Filebot 4.7 und Java 1.8.0_91 von rednoah. Beides habe ich schon de- und wieder neuinstalliert. Erfolglos. Selbstverständlich auch schon einen Reboot hinter mir... Ich kann es wirklich nur auf das DSM Update zurückführen, denn vorher lief es ohne Probleme...
Hat einer eine Idee?
Gruß
ZmaD