RSYNC'D Backup: Path Not Found when changing ACLs?

oguruma

Patron
Joined
Jan 2, 2016
Messages
226
I had an Rsync task to backup a dataset from one TrueNAS box to the other. I am trying to recover some data from it.

On the backup-nas the dataset was rsync to /data-1/backup/nas-1.

I just wanted to strip all the permissions, rsync it back to nas-1, and reset the permissions there.

However, when I go into /data-1/backup/nas-1/ and click "Edit ACL" I get CalLError: Path not found.

Code:
Error: Traceback (most recent call last):
  File "/usr/local/lib/python3.7/site-packages/middlewared/main.py", line 130, in call_method
    io_thread=False)
  File "/usr/local/lib/python3.7/site-packages/middlewared/main.py", line 1095, in _call
    return await run_method(methodobj, *args)
  File "/usr/local/lib/python3.7/site-packages/middlewared/main.py", line 1019, in _run_in_conn_threadpool
    return await self.run_in_executor(self.__ws_threadpool, method, *args, **kwargs)
  File "/usr/local/lib/python3.7/site-packages/middlewared/main.py", line 1007, in run_in_executor
    return await loop.run_in_executor(pool, functools.partial(method, *args, **kwargs))
  File "/usr/local/lib/python3.7/concurrent/futures/thread.py", line 57, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/local/lib/python3.7/site-packages/middlewared/schema.py", line 965, in nf
    return f(*args, **kwargs)
  File "/usr/local/lib/python3.7/site-packages/middlewared/plugins/filesystem.py", line 416, in acl_is_trivial
    raise CallError('Path not found.', errno.ENOENT)
middlewared.service_exception.CallError: [ENOENT] Path not found.
 
Top