summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2014-10-31 13:37:04 -0600
committermo khan <mo@mokhan.ca>2014-10-31 13:37:04 -0600
commit3215ca4a46db0f95e8b9bfc9693e2dffaa49b2c0 (patch)
tree7854ae45ef9079b8807c1f73169585ce0e7a058e
parentf65f25a417ac1b56599329f909e302da581e7e16 (diff)
create vagrant user for postgres with no password prompt.
-rw-r--r--script/bootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/bootstrap.sh b/script/bootstrap.sh
index 39aea0dc..ce6d3838 100644
--- a/script/bootstrap.sh
+++ b/script/bootstrap.sh
@@ -29,6 +29,6 @@ apt-get -y update
apt-get -y install nodejs
su postgres<<EOF
-createuser -s -e vagrant
+createuser -s -e -w vagrant
EOF
su -c "source /vagrant/script/bootstrap-vagrant-user.sh" vagrant