#!/bin/sh cipres_resources_dir="$2/CIPRES/CIPRES-Root/share/cipres/resources" if [ -e "$cipres_resources_dir/install.properties" ]; then echo "copying install.properties to install.properties.save ..." cp "$cipres_resources_dir/install.properties" "$cipres_resources_dir/install.properties.save" || exit 1 fi if [ -e "$cipres_resources_dir/system.properties" ]; then echo "copying system.properties to system.properties.save ..." cp "$cipres_resources_dir/system.properties" "$cipres_resources_dir/system.properties.save" || exit 1 fi exit 0