#!/bin/sh
# This script is run after the package is removed from the system.

# Volume where package is installed
PKG_VOLUME=$SYNOPKG_PKGDEST_VOL
# The backup directory
BACKUP_DIR="$PKG_VOLUME/@p5_backup"

# Remove backup of config and log folder
#if [ "$pkgwizard_remove_config" = "true" ]; then
	rm -rf $BACKUP_DIR
#fi

exit 0
