#!/bin/sh

DEST="/etc/dscribe/dscribe-upload.yaml"

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

