You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ke...@apache.org on 2012/07/09 04:14:27 UTC

git commit: removing unneeded password from cloud-dev setup-script

Updated Branches:
  refs/heads/master 63d6941bd -> f157b702e


removing unneeded password from cloud-dev setup-script


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/f157b702
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/f157b702
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/f157b702

Branch: refs/heads/master
Commit: f157b702e4c6821fc4af4c27e085dea097b79101
Parents: 63d6941
Author: David Nalley <da...@gnsa.us>
Authored: Sun Jul 8 22:14:20 2012 -0400
Committer: David Nalley <da...@gnsa.us>
Committed: Sun Jul 8 22:14:20 2012 -0400

----------------------------------------------------------------------
 setup/db/deploy-db-clouddev.sh |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/f157b702/setup/db/deploy-db-clouddev.sh
----------------------------------------------------------------------
diff --git a/setup/db/deploy-db-clouddev.sh b/setup/db/deploy-db-clouddev.sh
index 4aa544b..7d1ef70 100644
--- a/setup/db/deploy-db-clouddev.sh
+++ b/setup/db/deploy-db-clouddev.sh
@@ -17,12 +17,12 @@
 # under the License.
 
 
-mysql --user=cloud --password=cloud < clouddev.sql
+mysql --user=cloud  < clouddev.sql
 if [ $? -ne 0 ]; then
    printf "failed to init cloudev db"
 fi
-mysql --user=cloud -t cloud --password=cloud -e "insert into configuration (name, value) VALUES('consoleproxy.static.publicip', \"$1\")"
-mysql --user=cloud -t cloud --password=cloud -e "insert into configuration (name, value) VALUES('consoleproxy.static.port', \"$2\")"
+mysql --user=cloud -t cloud  -e "insert into configuration (name, value) VALUES('consoleproxy.static.publicip', \"$1\")"
+mysql --user=cloud -t cloud  -e "insert into configuration (name, value) VALUES('consoleproxy.static.port', \"$2\")"
 
 vmids=`xe vm-list is-control-domain=false |grep uuid|awk '{print $5}'`
 for vm in $vmids