From 5d30c7eaa1de4c0694c1c9f32311d631f8f3de99 Mon Sep 17 00:00:00 2001 From: Robert Hafner Date: Sun, 1 Dec 2013 23:06:18 -0800 Subject: [PATCH] Added ResetMail.sh to Provision.sh script, cleaned formatting. --- tests/vagrant/Provision.sh | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tests/vagrant/Provision.sh b/tests/vagrant/Provision.sh index 23674eb..550c7f5 100644 --- a/tests/vagrant/Provision.sh +++ b/tests/vagrant/Provision.sh @@ -1,5 +1,6 @@ #!/bin/sh +echo 'Provisioning Environment with Dovecot and Test Messages' # Install and Configure Dovecot @@ -20,7 +21,15 @@ fi if getent passwd testuser > /dev/null; then echo 'testuser already exists' else - echo 'Creating testuser' + echo 'Creating User "testuser"' sudo useradd testuser -m -s /bin/bash echo "testuser:applesauce"|sudo chpasswd -fi \ No newline at end of file +fi + + +# Setup Email + +/bin/bash /vagrant/ResetMail.sh + + +echo 'Environment has been provisioned' \ No newline at end of file