2007-06-25 10:00:05 +00:00
|
|
|
#!/bin/sh
|
2008-03-09 22:25:02 +00:00
|
|
|
#
|
|
|
|
# 2007 Daniel Aubry
|
|
|
|
# 2008 Nico Schottelius (added minimal header)
|
|
|
|
#
|
2008-03-18 13:03:09 +00:00
|
|
|
# Copying license: GPL2-only
|
2008-03-09 22:25:02 +00:00
|
|
|
#
|
2007-06-25 10:00:05 +00:00
|
|
|
|
2008-03-09 22:25:02 +00:00
|
|
|
# TODO:
|
|
|
|
# add variables, add copying, add configuration
|
2007-06-25 10:00:05 +00:00
|
|
|
|
|
|
|
if [ ! -e /tmp/ccollect-stats.lock ]
|
|
|
|
then
|
2008-03-17 08:17:53 +00:00
|
|
|
touch /tmp/ccollect-stats.lock
|
2007-06-25 10:00:05 +00:00
|
|
|
|
2008-03-17 08:17:53 +00:00
|
|
|
# changes after license clearify
|
|
|
|
# for dest in /etc/ccollect/sources/ -type f -name destination | while read line
|
2007-06-25 10:00:05 +00:00
|
|
|
|
2008-03-17 08:17:53 +00:00
|
|
|
find /etc/ccollect/sources/ -type l | while read line
|
|
|
|
d=$(basename $(readlink $line))
|
|
|
|
echo "====[Backup: $backupname]====" | tee -a /var/log/backup.log
|
|
|
|
du -sh $line/* | tee -a /var/log/backup.log
|
|
|
|
done
|
|
|
|
rm /tmp/ccollect-stats.lock
|
|
|
|
fi
|