Hi all =)
Today I noticed that /etc/periodic/daily/100.clean-disks does a
The comment in the header says
but what is the purpose of this? And does it really scan and delete in my ZFS storage pool at /tank ?
What would happen if I remove this script?
Hugs,
Sandra =)
Today I noticed that /etc/periodic/daily/100.clean-disks does a
find / ... and deletes everything that matches:
Code:
sed -e 's/^[ ]*//' \
-e 's/[ ]*$//' \
-e 's/[ ][ ]*/ -o -name /g'`
The comment in the header says
Code:
# Remove garbage files more than $daily_clean_disks_days days old
but what is the purpose of this? And does it really scan and delete in my ZFS storage pool at /tank ?
What would happen if I remove this script?
Hugs,
Sandra =)