balario

Members
  • Posts

    3
  • Joined

  • Last visited

balario's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Hi @itimpi Right now the scripts are hosted in "/mnt/user/appdata/script-mover/scriptbefore.sh". From this location it's working just fine. The only thing I had misconfigured was the file execution permissions. Should I move it to the USB stick for security reasons?
  2. Oops! Rookie mistake! The file was not executable. It's working now. Thank you very much!
  3. Newbie here: I'm trying to add a script before and after Mover runs. The goal is to stop the qbittorrent docker while Mover does its thing and restart it after it finishes. The script running BEFORE is: #!/bin/bash docker stop --time=60 qbittorrent I have uploaded the script to the path: /mnt/user/appdata/script-mover-before/script.sh The script running AFTER is: #!/bin/bash docker start qbittorrent I have uploaded the script to the path: /mnt/user/appdata/script-mover-after/script.sh I don't know if the script file should go in a particular path or in a different format/extension. At the moment, I can't get docker to stop. Any help would be much appreciated!