#!/bin/sh -e
#
# Check that the workstation related cfengine rules was executed

if test -r /etc/debian-edu/config ; then
    . /etc/debian-edu/config
fi

# Only Workstation profiles use squid
if echo "$PROFILE" | egrep -q 'Workstation|Roaming-Workstation|LTSP-Server' ; then
    :
else
    exit 0
fi
