Thread: Backup Failed
View Single Post
  #9  
Old 01-15-2006, 01:13 PM
poolmouse poolmouse is offline
Registered User
 
Join Date: Jan 2006
Posts: 4
Thumbs up apple hasn't acknowledged the bug yet...

and the problem still exists in 10.4.4. the person who found the problem reported it back in early december (bug#4369715). we've added the following entries into our logout script (see below).

poolmouse
curmudgeon at large

=== added these lines ===

if [ -e /Applications/Adobe\ Bridge ];
then
echo "Adobe Bridge exists."
rm -Rf /Applications/Adobe\ Bridge/Legal.localized/*
else
echo "Adobe Bridge does not exist."
fi

if [ -e /Applications/Adobe\ Creative\ Suite\ 2 ];
then
echo "Adobe Creative Suite 2 exists."
rm -Rf /Applications/Adobe\ Creative\ Suite\ 2/Legal/*
else
echo "Adobe Creative Suite 2 does not exist."
fi

if [ -e /Applications/Adobe\ Illustrator\ CS2 ];
then
echo "Adobe Illustrator CS2 exists."
rm -Rf /Applications/Adobe\ Illustrator\ CS2/Legal.localized/*
else
echo "Adobe Illustrator CS2 does not exist."
fi

if [ -e /Applications/Adobe\ InDesign\ CS2 ];
then
echo " Adobe InDesign CS2 exists."
rm -Rf /Applications/Adobe\ InDesign\ CS2/Legal/*
else
echo "Adobe InDesign CS2 does not exist."
fi

if [ -e /Applications/Adobe\ Photoshop\ CS2 ];
then
echo "Adobe Photoshop CS2 exists."
rm -Rf /Applications/Adobe\ Photoshop\ CS2/Legal.localized/*
else
echo "Adobe Photoshop CS2 does not exist."
fi

if [ -e /Applications/Adobe\ Version\ Cue\ CS2 ];
then
echo "Adobe Version Cue exists."
rm -Rf /Applications/Adobe\ Version\ Cue\Legal.localized/*
else
echo "Adobe Version Cue CS2 does not exist."
fi

=== end ===

Last edited by poolmouse; 01-15-2006 at 07:57 PM.
Reply With Quote