#!/bin/sh

set -e

readonly optbin="/opt/diesel"

for lnk in $optbin; do
 if [ -L $lnk ]; then
  rm -f $lnk
 fi
done
