Abdiel

Members
  • Posts

    2
  • Joined

  • Last visited

Abdiel's Achievements

Noob

Noob (1/14)

1

Reputation

  1. Im unware of seeing these earlier, now for the past few days I´ve been noticing them occur semi-frequently. It doesnt appear to affect the general function of the server in any way that atleast I can notice. I'm curious though if these errors are something I should pay heed to or if I can safely ignore them? Unraid is: Version: 6.8.3 tower-diagnostics-20200327-2251.zip
  2. It seems there's something wrong with my cleanup script, when the script runs it just puts the files/folders that were removed back onto gdrive. I can't find any information in logs, it does not report anything wrong. I am using the cleanup script as is to the letter (copy pasted from github). #!/bin/bash ####### Check if script already running ########## if [[ -f "/mnt/user/appdata/other/rclone/rclone_cleanup" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Exiting as script already running." exit else touch /mnt/user/appdata/other/rclone/rclone_cleanup fi ####### End Check if script already running ########## ################### Clean-up UnionFS Folder ######################### echo "$(date "+%d.%m.%Y %T") INFO: starting unionfs cleanup." find /mnt/user/mount_unionfs/google_vfs/.unionfs -name '*_HIDDEN~' | while read line; do oldPath=${line#/mnt/user/mount_unionfs/google_vfs/.unionfs} newPath=/mnt/user/mount_rclone/google_vfs${oldPath%_HIDDEN~} rm "$newPath" rm "$line" done find "/mnt/user/mount_unionfs/google_vfs/.unionfs" -mindepth 1 -type d -empty -delete rm /mnt/user/appdata/other/rclone/rclone_cleanup exit