#!/bin/sh
#
# This script will be executed after module is installed.

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

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