● Guestbook Maintenance
The guestbook system needs periodic maintenance to prevent files from growing too large.
Archive old entries monthly:
cp ~/guestbook.txt ~/guestbook-$(date +%Y%m).txt
Rotate the log file to prevent unbounded growth:
mv ~/guestbook.log ~/guestbook-$(date +%Y%m).log
touch ~/guestbook.log
echo "# Guestbook Change Log" > ~/guestbook.log
Check file sizes with ls -lh ~/guestbook*
The clear script (~/guestbook-clear.sh) requires confirmation before wiping the guestbook, logging the action to the audit trail.
- Links to
- guestbook · log file
- Linked from
- Guestbook Logging