KnifeFed

Members
  • Posts

    111
  • Joined

Everything posted by KnifeFed

  1. So there's currently no way to have it execute on the first day of the month, unless it runs every month?
  2. Here's a OneDark theme I made: I've also set the following in Unraid Settings -> Display Settings: If you would like to try it, I've attached a zip file which you can import via Theme Engine. OneDark-black.zip
  3. The changedetection.io container doesn't shut down gracefully so it will always time out when Unraid tries to shut it down (with ´docker stop -t xx´, where 'xx' is the Docker stop timeout you've set), e.g. when backing up appdata. If you add '--init' under 'Extra Parameters' it will work as expected.
  4. Not really, unless you want to be able to restore a backup zip from the Sonarr GUI.
  5. A small feature request: I would love to have the option of using an exclude list rather than the current include list for which Docker containers to update, because I only have one container that I don't want to automatically update and currently I have to enable automatic updates for every new container I install.
  6. This container doesn't shut down gracefully so it will always time out when Unraid tries to shut it down (with ´docker stop -t xx´, where 'xx' is the Docker stop timeout you've set), e.g. when backing up appdata. If you add '--init' under 'Extra Parameters' it will work as expected.
  7. I just had the plugin run on schedule for the first time. I got a notification that it started but I can't seem to find any form of progress indicator anywhere. Am I missing something? Edit: Now I got a notification that it finished and a log of files with "BLAKE2 hash key corruption" but they're all files that were deleted already. Is that intended behavior?
  8. Now that there's a new update for the My Servers plugin (version 2021.06.07.1845), Auto Update errors out with the same exit status 255. I manually updated My Servers again and after that it runs fine.
  9. On the settings page it says "Docker Appdata Folders and CA backup Destination is automatically excluded". Does this not also apply to the "Docker Safe New Perms" tool? My CA Backup destination is "/mnt/cache/appdata-bup" but when the tool runs it says "Processing '/mnt/cache/appdata-bup'" and changes the permissions on the backup files.
  10. Yeah, I see now that it puts the 'fa-spin' class on every <i> element within the container. Would it be possible to either put an inline style like: <i style="-webkit-animation: none !important; animation: none !important;"...> on the icons where it's not wanted or inject some global CSS, like: .fa-navicon.fa-spin, .fa-globe.fa-spin { -webkit-animation: none !important; animation: none !important; } ?
  11. I've noticed that when restarting a container, the log- and globe icons start spinning. Is this intentional? Here's a screenshot of what I'm referring to.
  12. Yeah, it's got a unique size of 369MB so I guess that's all good. Thanks for confirming.
  13. Has this been fixed? I got a warning notification that my docker.img is 21.5GB and one of the discrepancies I noticed is that the Jackett image is 980MB and the container 279MB, meaning a total of 1.26GB. Does that seem right?
  14. Thanks for implementing it!
  15. I was adding a new container to an existing folder and after clicking submit it seemed like nothing happened (but it was most likely just a bit slow to load) so I clicked again. After that, all my folders were gone and the Docker page showed the error message: "Warning: Invalid argument supplied for foreach() in /usr/local/emhttp/plugins/docker.folder/include/add-update.folder/import-export.php on line 8". I checked /boot/config/plugins/docker.folder/folders.json and saw it was malformed + a duplicate key had been created for the folder I was adding to. Good thing there's a backup Anyhoo, it would be nice if this sort of thing could be prevented, i.e. not allowing duplicate keys to be written and/or disabling the submit button after it's clicked.
  16. Since the input field gets focus on page load, the caret is constantly blinking and that's a real eyesore to me I've currently remedied it with a user-script simply by setting: #guiSearchBox:placeholder-shown { caret-color: transparent; } This let's the input keep focus but hides the caret, then revealing it again when typing starts. I think it would be nice to have as a built-in option.
  17. Has this plugin been abandoned or close to it? There hasn't been a commit in three months and there are a lot of open issues on GitHub + many of the packages are out of date. Is there an alternative, at least somewhat convenient way of installing CLI tools and keeping them updated?
  18. Would it be possible to implement that? It would be infinitely more helpful to know the actual process responsible for the activity.
  19. My container is 2.64 GB. That can't be right, can it?
  20. I manually updated the My Servers plugin then ran auto update again and now it's working. I guess it doesn't handle version numbers like "2021.05.14.1336".
  21. bash-5.0# /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php Warning: date_diff() expects parameter 2 to be DateTimeInterface, bool given in /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php on line 85 Fatal error: Uncaught Error: Call to a member function format() on bool in /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php:86 Stack trace: #0 {main} thrown in /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php on line 86 bash-5.0# echo $? 255
  22. When this app runs, plugins aren't updated and I only get this in my log: May 26 00:00:01 unraiden Plugin Auto Update: Checking for available plugin updates May 26 00:00:07 unraiden crond[1933]: exit status 255 from user root /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php >/dev/null 2>&1
  23. Is there any way to do wildcard- and/or path independent exclusions, e.g. `*.tmp, *cache*, .cache, .DS_Store` etc? Edit: Yes there is. All of the above examples work. Remember that everything is case sensitive though, so e.g. `*xyz*` will match `testxyztest.txt` but not `testXYZtest.txt`.