#!/bin/sh
# One-click uninstall: container removed in preuninst; just clean config.
PKG_NAME="kvnetflix"
PORT_CONFIG_FILE="/var/packages/${PKG_NAME}/etc/port_config"

if [ "${SYNOPKG_PKG_STATUS}" = "UNINSTALL" ]; then
    rm -f "${PORT_CONFIG_FILE}"
fi
exit 0
