JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr#!/bin/sh set -e case "$1" in purge) # This package has previously been removed and is now having # its configuration purged from the system. protect_conf="/etc/monarx-protect.conf" if [ -f "$protect_conf" ]; then echo "Removing monarx protect configuration file." chattr -i "$protect_conf" 2> /dev/null rm $protect_conf fi ;; esac