#!/bin/bash

if hostname | egrep -sq '^(di|ge2007)'; then
    USE_MIRROR=true
else
    USE_MIRROR=false
fi
# Forcing mode on all machines
USE_MIRROR=true

cat <<EOF
USE_MIRROR=$USE_MIRROR
EOF
