#!/bin/sh

DEST="/etc/switchman.conf"

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

