hmgnsd

Members
  • Posts

    42
  • Joined

  • Last visited

Everything posted by hmgnsd

  1. At the moment I'm having stuff enter my watch folder but the docker isn't doing anything with it. I've tried restarting the docker, stopping and then starting, removing everything from the watch folder and only adding one item back, a forced update and docker safe new permissions and nothing. How can I troubleshoot this further please?
  2. I do have this workflow but sonarr and radarr attempt to import the files before handbrake has finished encoding, because the download client has already told them that the files are ready for import. See some of my posts for workarounds, it'll not be 100% automated.
  3. Yeah I haven’t noticed anything not working except for my sonarr docker not loading until it’s restarted
  4. Call traces again? This time running 6.5, lemme know if I should start another post instead of adding to this one? Looks like something to do with my network adapter? This is after moving to SSL: Mar 28 06:17:37 Tower kernel: Call Trace: Mar 28 06:17:37 Tower kernel: <IRQ> Mar 28 06:17:37 Tower kernel: ipv4_confirm+0xac/0xb4 [nf_conntrack_ipv4] Mar 28 06:17:37 Tower kernel: nf_hook_slow+0x37/0x96 Mar 28 06:17:37 Tower kernel: ip_local_deliver+0xab/0xd3 Mar 28 06:17:37 Tower kernel: ? inet_del_offload+0x3e/0x3e Mar 28 06:17:37 Tower kernel: ip_rcv+0x311/0x346 Mar 28 06:17:37 Tower kernel: ? ip_local_deliver_finish+0x1b8/0x1b8 Mar 28 06:17:37 Tower kernel: __netif_receive_skb_core+0x6ba/0x733 Mar 28 06:17:37 Tower kernel: process_backlog+0x8c/0x12d Mar 28 06:17:37 Tower kernel: net_rx_action+0xfb/0x24f Mar 28 06:17:37 Tower kernel: __do_softirq+0xcd/0x1c2 Mar 28 06:17:37 Tower kernel: do_softirq_own_stack+0x2a/0x40 Mar 28 06:17:37 Tower kernel: </IRQ> Mar 28 06:17:37 Tower kernel: do_softirq+0x46/0x52 Mar 28 06:17:37 Tower kernel: netif_rx_ni+0x21/0x35 Mar 28 06:17:37 Tower kernel: macvlan_broadcast+0x117/0x14f [macvlan] Mar 28 06:17:37 Tower kernel: ? __clear_rsb+0x25/0x3d Mar 28 06:17:37 Tower kernel: macvlan_process_broadcast+0xe4/0x114 [macvlan] Mar 28 06:17:37 Tower kernel: process_one_work+0x14c/0x23f Mar 28 06:17:37 Tower kernel: ? rescuer_thread+0x258/0x258 Mar 28 06:17:37 Tower kernel: worker_thread+0x1c3/0x292 Mar 28 06:17:37 Tower kernel: kthread+0x111/0x119 Mar 28 06:17:37 Tower kernel: ? kthread_create_on_node+0x3a/0x3a Mar 28 06:17:37 Tower kernel: ? SyS_exit_group+0xb/0xb Mar 28 06:17:37 Tower kernel: ret_from_fork+0x35/0x40 Mar 28 06:17:37 Tower kernel: Code: 48 c1 eb 20 89 1c 24 e8 24 f9 ff ff 8b 54 24 04 89 df 89 c6 41 89 c5 e8 a9 fa ff ff 84 c0 75 b9 49 8b 86 80 00 00 00 a8 08 74 02 <0f> 0b 4c 89 f7 e8 03 ff ff ff 49 8b 86 80 00 00 00 0f ba e0 09 Mar 28 06:17:37 Tower kernel: ---[ end trace fca695260a9f8e73 ]---
  5. sure #!/bin/bash if [ -f /var/run/mymover.pid ]; then if ps h `cat /var/run/mymover.pid` | grep mymover.sh ; then echo "mymover already running, sorry." exit 0 fi fi echo $$ >/var/run/mymover.pid echo "Moving files from $1 to $2" (cd "/mnt/user/downloads/Complete/"; find -depth -print \( ! -exec fuser -s '{}' \; -exec rsync -i -qdIWRpEAXogt --numeric-ids --inplace --remove-source-files {} "/mnt/user/downloads/Import/" \; \)) # Prune empty directories from source dir find "/mnt/user/downloads/Complete/*" -type d -empty -prune -exec rmdir --ignore-fail-on-non-empty {} \; # Prune empty directories from destination dir find "/mnt/user/downloads/Import/*" -type d -empty -prune -exec rmdir --ignore-fail-on-non-empty {} \; sync rm /var/run/mymover.pid echo "Moving all done."
  6. Ah, not my code. Copied from another thread where someone adapted the unRAID mover script. What I'd like is for everything to be moved from /mnt/user/downloads/Complete to /mnt/user/downloads/Import without the /Complete/ directory being removed. I'm really appreciating the replies
  7. hmm, still moves but throws up . find: `/mnt/user/downloads/Complete/*': No such file or directory /tmp/user.scripts/tmpScripts/Move Completed Downloads/script: line 17: -empty: command not found find: `/mnt/user/downloads/Import/*': No such file or directory /tmp/user.scripts/tmpScripts/Move Completed Downloads/script: line 21: -prune: command not found Moving all done.
  8. Like this? # Prune empty directories from source dir find cd "/mnt/user/downloads/Complete/" -type d -empty -prune -exec rmdir --ignore-fail-on-non-empty {} \; I get this error? . find: `cd': No such file or directory Moving all done.
  9. My apologies! Let me simplify; I would like the script to move the files and folders in the directory /downloads/complete/. What I have noticed, is that when that directory is empty and the script runs, it actually removes the directory /downloads/complete/. How could I adapt it to move the contents of the directory, but not remove the directory itself when empty?
  10. Hmm, was set to 'auto'. Set it to 'no' and now it works! Weird
  11. Ah, that's moving stuff but now /mnt/user/downloads/complete/season 01/ directory is left, for example... There's no way of getting the subdirectories from /complete/ moved without it deleting the directory /complete/ is it's empty? Am I making sense? I feel like I'm not.
  12. OK, anyone? This script to move files from one directory to another is removing the source directory if empty after it runs , how can I prevent it doing that? #!/bin/bash if [ -f /var/run/mymover.pid ]; then if ps h `cat /var/run/mymover.pid` | grep mymover.sh ; then echo "mymover already running, sorry." exit 0 fi fi echo $$ >/var/run/mymover.pid echo "Moving files from $1 to $2" (cd "/mnt/user/downloads/Complete/"; find -depth -print \( ! -exec fuser -s '{}' \; -exec rsync -i -qdIWRpEAXogt --numeric-ids --inplace --remove-source-files {} "/mnt/user/downloads/Import/" \; \)) # Prune empty directories from source dir find "/mnt/user/downloads/Complete/" -type d -empty -prune -exec rmdir --ignore-fail-on-non-empty {} \; # Prune empty directories from destination dir find "/mnt/user/downloads/Import/" -type d -empty -prune -exec rmdir --ignore-fail-on-non-empty {} \; sync rm /var/run/mymover.pid echo "Moving all done."
  13. I: 2018/03/14 22:45:28 app.go:57: controlr v2.9.1-367-243ce84-v2018.02.16a starting ... I: 2018/03/14 22:45:28 app.go:65: No config file specified. Using app defaults ... I: 2018/03/14 22:45:28 core.go:73: starting service Core ... I: 2018/03/14 22:45:28 core.go:266: Created ipmi sensor ... I: 2018/03/14 22:45:28 core.go:293: No ups detected ... I: 2018/03/14 22:45:28 server.go:70: Starting service Server ... I: 2018/03/14 22:45:28 server.go:89: Serving files from /usr/local/emhttp/plugins/controlr I: 2018/03/14 22:45:28 server.go:140: Server started listening https on :2378 I: 2018/03/14 22:45:28 api.go:46: Starting service Api ... I: 2018/03/14 22:45:28 api.go:90: Api started listening https on :2382 I: 2018/03/14 22:45:28 app.go:85: Press Ctrl+C to stop ... I: 2018/03/14 23:08:44 core.go:112: event: "/boot/config/plugins/dynamix/dynamix.cfg": WRITE I: 2018/03/14 23:08:44 core.go:114: modified file: /boot/config/plugins/dynamix/dynamix.cfg I: 2018/03/15 10:26:33 core.go:112: event: "/boot/config/plugins/dynamix/dynamix.cfg": WRITE I: 2018/03/15 10:26:33 core.go:114: modified file: /boot/config/plugins/dynamix/dynamix.cfg I: 2018/03/15 10:33:21 app.go:89: Received signal: (terminated) ... shutting down the app now ... I: 2018/03/15 10:33:21 api.go:105: stopped service Api ... I: 2018/03/15 10:33:21 server.go:157: stopped service Server ... I: 2018/03/15 10:33:21 core.go:141: stopped service Core ... I: 2018/03/15 11:05:47 app.go:57: controlr v2.9.1-367-243ce84-v2018.02.16a starting ... I: 2018/03/15 11:05:47 app.go:65: No config file specified. Using app defaults ... I: 2018/03/15 11:05:47 core.go:73: starting service Core ... I: 2018/03/15 11:05:47 core.go:266: Created ipmi sensor ... I: 2018/03/15 11:05:47 core.go:293: No ups detected ... I: 2018/03/15 11:05:47 server.go:70: Starting service Server ... I: 2018/03/15 11:05:47 server.go:89: Serving files from /usr/local/emhttp/plugins/controlr I: 2018/03/15 11:05:47 server.go:140: Server started listening https on :2378 I: 2018/03/15 11:05:47 api.go:46: Starting service Api ... I: 2018/03/15 11:05:47 api.go:90: Api started listening https on :2382 I: 2018/03/15 11:05:47 app.go:85: Press Ctrl+C to stop ...
  14. I can connect to server but can’t view logs... Running 6.4.1 not with https
  15. Thank you for the suggestion, I have looked at other possibilities before finding something that works for me regarding radarr/sonarr and post processing media. I can go in an delete the left overs manually but if I can get this script working it’d be much less maintenance.
  16. Hello all! Would anyone be able to cast their eyes over a couple of scripts I have ‘adapted’ for my download setup? The first one I don’t think there is a problem with, it should move Handbrake converted files from one directory to another where a media manager can pick them up: The next one, is supposed to delete the original files after they have been copied. The last time I tried it, it looked like it was removing files from all directories which was not the desired effect.
  17. Hello, getting a strange message that I don't recall seeing when running extended tests: Warning: parse_ini_file(/boot/config/share.cfg): failed to open stream: No such file or directory in /usr/local/emhttp/plugins/fix.common.problems/include/tests.php on line 1706 I've uninstalled and reinstalled the plugin and still get the error?
  18. Using Dolphin Docker to copy and I got ‘could not create symlink’ and then the file address to the unassigned device I was copying and ‘please check permissions’, do I need to have ownership of the destination as well? I thought that would be default on a blank unassigned device?
  19. In order to backup my appdata, I had to chown -R nobody:nogroup (which is I hope right!?) when I come to restoring the files to a new Docker instance of Plex, will it sort the permissions itself on install, or do I need to change permissions back?
  20. Oh for god's sake!? It's working but you don't support Safari now!? So I have to Internet Explorer 6 (chrome) to access stuff now!?
  21. OK, thank you. That part's done, but I'm still without VNC access to my VM since updating to 6.4.
  22. Nope, looks like it's still on as 192.168.1.110/main gets transposed into a long DNS string
  23. Well, I checked there and the only thing which looks like 'off' to a layman is "Note: After provisioning a Let's Encrypt SSL certificate you may turn off the updatedns and newcert background processes by chaning this field to Yes." Having done that, I'm still getting a 'no vnc' error when I try to use my Windows 10 VM, hence my posting here. Is it off now or what? Has 6.4 broken my VNC?
  24. OK, so how do I turn off secure access? With it on I can't VNC to my virtual machine?
  25. Damn was wondering about that, will have a look through gatekeeper and clamxav