#!/bin/bash

DEST="/etc/dt-mymgr/config.json"

if [ "$1" = "remove" ]; then
    if [ -L $DEST ]; then
        rm -f $DEST
    fi
fi
