Script to update users password, made test and updated setup.sh (#413)

* Added script to update users password, made test and updated setup.sh

* Moved update password test to tests.bat

* Fixed test for update password
This commit is contained in:
Influencer 2016-12-21 14:12:05 -05:00 committed by Thomas VIAL
parent 68e7e46308
commit 83c0095e00
3 changed files with 66 additions and 0 deletions

View file

@ -43,6 +43,7 @@ SUBCOMMANDS:
email:
$0 email add <email> <password>
$0 email update <email> <password>
$0 email del <email>
$0 email list
@ -115,6 +116,10 @@ case $1 in
shift
_docker_image addmailuser $@
;;
update)
shift
_docker_image updatemailuser
;;
del)
shift
_docker_image delmailuser $@