#!/bin/bash
# Remove ftp account
#
# Arguments:
ACCOUNT=$1
FTP_ACCOUNT=$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 ftp account" && exit 1

exit 0
