Making a fssnap of / and /var

Hello to everyboyd i have a list of filesystem that i want to do a fssnap the idea is the bakcup
/
/var
/dbo
/Free

The logic is when i do a fssnap of / or /dbo or /Free the file that generetes the fssnap goes to /var but when i do a fssnap of /var goes to
/(and some folder). Can anybody help me?

I have todo do this becuase i do a script that generates de file of fssnap in /tmp but this filesystem is not like the other filesystem.
I copy the logic that i made.

for f in $FILESYSTEMS
do
echo
echo ":::: Efectuando Snapshot de $f (`date +%D-%T`)"
fsna=`fssnap -F ufs -o unlink,maxsize=500m,bs=/tmp/backup.file $f`
if ufsdump ${LEVEL}uf $REMOTO:$TAPE $fsna
then
:
else
error "Error Grabando Filesystem $f"
ERROR=true
break # Salir del Bucle FOR
fi
NARCH=`expr $NARCH + 1`
fssnap -d $f
done