Sorry for the long delay, I was overseas and did not have time to look at this.
Just replace this script with the one above that goes into post-mount:
Please report back if it works according to your needs, I have no way of testing it now...Code:#!/bin/sh
dirs=`ls /tmp | grep harddisk`;
for dir in $dirs; do
folder=`date +%Y%m%d_%H%M%S`;
mkdir -p /opt/backup/$folder;
cp -ar /tmp/$dir/* /opt/backup/$folder;
umount /tmp/$dir
done
F.

