Skip to content

Commit f157b70

Browse files
committed
removing unneeded password from cloud-dev setup-script
1 parent 63d6941 commit f157b70

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

setup/db/deploy-db-clouddev.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
# under the License.
1818

1919

20-
mysql --user=cloud --password=cloud < clouddev.sql
20+
mysql --user=cloud < clouddev.sql
2121
if [ $? -ne 0 ]; then
2222
printf "failed to init cloudev db"
2323
fi
24-
mysql --user=cloud -t cloud --password=cloud -e "insert into configuration (name, value) VALUES('consoleproxy.static.publicip', \"$1\")"
25-
mysql --user=cloud -t cloud --password=cloud -e "insert into configuration (name, value) VALUES('consoleproxy.static.port', \"$2\")"
24+
mysql --user=cloud -t cloud -e "insert into configuration (name, value) VALUES('consoleproxy.static.publicip', \"$1\")"
25+
mysql --user=cloud -t cloud -e "insert into configuration (name, value) VALUES('consoleproxy.static.port', \"$2\")"
2626

2727
vmids=`xe vm-list is-control-domain=false |grep uuid|awk '{print $5}'`
2828
for vm in $vmids

0 commit comments

Comments
 (0)