#!/bin/sh

set -e

if [ -e /home/user/.config/QDL/QDL.conf ]
    then
        echo 'Removing old QDL config file'
        su -c 'rm /home/user/.config/QDL/QDL.conf' - user
fi

exit 0