We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The atime or access time is often disabled on Linux for performance reasons. We should use -mtime or -ctime to find old backup files here:
atime
-mtime
-ctime
privacyidea-appliance/authappliance/lib/appliance.py
Line 46 in 70d080b
The text was updated successfully, but these errors were encountered:
We have the same issue, on our system only mtime seems to work
root@privacyIDEA:~# find /var/lib/privacyidea/backup -type f | wc -l 43 root@privacyIDEA:~# find /var/lib/privacyidea/backup -type f -mtime +14 | wc -l 27 root@privacyIDEA:~# find /var/lib/privacyidea/backup -type f -atime +14 | wc -l 0 root@privacyIDEA:~# find /var/lib/privacyidea/backup -type f -ctime +14 | wc -l 0
Sorry, something went wrong.
No branches or pull requests
The
atime
or access time is often disabled on Linux for performance reasons. We should use-mtime
or-ctime
to find old backup files here:privacyidea-appliance/authappliance/lib/appliance.py
Line 46 in 70d080b
The text was updated successfully, but these errors were encountered: