Jump to content

KnifeFed

Members
  • Posts

    111
  • Joined

Posts posted by KnifeFed

  1. 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.

  2. On 6/22/2021 at 1:43 AM, xrqp said:

    If I use this app, CA Appdata Backup, then is there any reason to backup Sonarr (using the backup feature inside Sonarr) ?  I run Sonarr with a Unraid container.

     

    Not really, unless you want to be able to restore a backup zip from the Sonarr GUI.

  3. 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.

  4. 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.

  5. 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?

  6. On 5/26/2021 at 4:38 PM, KnifeFed said:

    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".

    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.

  7. 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.

  8. 1 hour ago, GuildDarts said:

    edit:
    Just took another look, and it turns out that I was already modifying the function that was responsible for making the icon spin.
    Just pushed and update with a fix, should have check before posting :$

    Nice, thanks!

  9. 29 minutes ago, GuildDarts said:

    This is not international but as the code that makes it spin is not from docker-folder I can't really fix it :(

    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; }

    ?

  10. 20 hours ago, binhex said:

    sounds about right to me, keep in mind that size is the total size including all intermediate images that make up jackett, so the actual size of jackett when you pull down is about 250MB not 1.2GB.

    Yeah, it's got a unique size of 369MB so I guess that's all good. Thanks for confirming.

  11. On 12/3/2020 at 12:29 PM, binhex said:

    nope its not normal but i havent had time to track down whats causing the increase in size, after some further investigation i found out its due to nuget caching, the next image will be smaller.

    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?

  12. 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.

  13. Since the input field gets focus on page load, the caret is constantly blinking and that's a real eyesore to me :P

    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.

    • Like 1
  14. 7 minutes ago, Squid said:

    What's the output if you enter this in:

    
    /usr/local/emhttp/plugins/ca.update.applications/scripts/updateApplications.php
    
    echo $?

     

    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

     

  15. 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

     

  16. 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`.

×
×
  • Create New...