#!/bin/sh

backup_ext=personal

#
# Show arguments and wait for cancellation.
#
#echo "source package path: $1"
#echo "package destination: $2"
#echo "mount point of dest: $3"
#echo "installer framework: $4"

#
# Backup old Server Admin client.
#
if [ -d "$3/Applications/Utilities/Server Admin.app" ]; then
	echo "Renaming old administration client..."
	mv -f "$3/Applications/Utilities/Server Admin.app" \
	    "$3/Applications/Utilities/Server Admin for 10.1.app"
	echo "done."
fi
