#!/bin/sh set -e case "$1" in remove) CONF='/etc/rogcore.conf' if [ -f $CONF ]; then rm -rf $CONF fi ;; *) ;; esac #DEBHELPER# exit 0