#!/bin/bash
# Create new ftp account
#
# Arguments:
ACCOUNT=$1
FTP_ACCOUNT=$2
FTP_PASSWORD=$3
PATH=$4
QUOTA=$5

# 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 creating ftp account" && exit 1

exit 0