#!/bin/sh
#
# This script will be executed before module is uninstalled.

if [ -f /opt/customerlogo/backup/logo.png ]; then
  mv -f /opt/customerlogo/backup/logo.png /home/httpd/
fi

if [ -f /opt/customerlogo/backup/favicon.ico ]; then
  mv -f /opt/customerlogo/backup/favicon.ico /home/httpd/
fi
