#!/usr/bin/env bash

. /usr/share/dosis2/bin/shell-support-functions

function error() {
    echo -e "\033[031m$1\033[0m"
}

if [ ${UID} != 0 ]; then
    error "This script must be ran as root"
    exit 1
fi

if [ -f /etc/apt/apt.conf.d/75lowerspeed ]; then
	rm -f /etc/apt/apt.conf.d/75lowerspeed
	echo /etc/apt/apt.conf.d/75lowerspeed removed
else
	echo "Nothing to do"
fi
