#!/bin/bash
# Remove domain
#
# Arguments:
ACCOUNT=$1
DOMAIN=$2
REMOVE_CONTENT=$3 # (remove public dir data)

# On success no output should be passed.
# exit with code 0
#
# On error write your error to stderr.
# exit with code 1
# e.g. >&2 echo "Failed removing domain" && exit 1

exit 0
