#!/bin/bash
# Remove SSL certificate
#
# Arguments:
ACCOUNT=$1
DOMAIN=$2

# 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 SSL certificate" && exit 1

exit 0