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
Describe the bug zentyal.cleantmp.service fails if there are too many files in /var/lib/zentyal/tmp/
It happens when the user exceeds the maximum command-line length allowed for the arguments in a command, in this case expanding the *
Screenshots
Zentyal OS:
Possible solution: instead of user rm and * a find can be better find /var/lib/zentyal/tmp/ -type f -delete here you can find other examples https://linuxhint.com/solution-bin-rm-argument-list-too-long/
find /var/lib/zentyal/tmp/ -type f -delete
The text was updated successfully, but these errors were encountered:
Hi @iotaka ,
Thank you for reporting this. We have reproduced the issue and it was added to the roadmap.
Sorry, something went wrong.
Workaround works great! (find...)
djoven89
No branches or pull requests
Describe the bug
zentyal.cleantmp.service fails if there are too many files in /var/lib/zentyal/tmp/
It happens when the user exceeds the maximum command-line length allowed for the arguments in a command, in this case expanding the *
Screenshots
Zentyal OS:
Possible solution:
instead of user rm and * a find can be better
find /var/lib/zentyal/tmp/ -type f -delete
here you can find other examples
https://linuxhint.com/solution-bin-rm-argument-list-too-long/
The text was updated successfully, but these errors were encountered: