You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should have a shared practice where files in the /tmp directory that are owned by deploy are deleted after 7 days. Otherwise they start filling up the disk after awhile.
We should have a shared practice where files in the /tmp directory that are owned by deploy are deleted after 7 days. Otherwise they start filling up the disk after awhile.
sudo find /tmp -type f -mtime +7 -user deploy -execdir rm -- '{}' ;
The text was updated successfully, but these errors were encountered: