-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from IBM/master
sync
- Loading branch information
Showing
24 changed files
with
1,227 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,10 @@ | |
*.sum | ||
|
||
#Others | ||
/deploy/hosts/hosts | ||
/web/clui/clui | ||
*.retry | ||
.ssh | ||
*.log | ||
*.status | ||
/bin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
[hyper] | ||
server-0 ansible_host=192.168.10.25 | ||
inst-dev ansible_host=192.168.1.128 ansible_ssh_private_key_file=/opt/cloudland/deploy/.ssh/cland.key client_id=0 | ||
|
||
[cland] | ||
allinone ansible_host=192.168.10.25 | ||
inst-dev ansible_host=192.168.1.128 ansible_ssh_private_key_file=/opt/cloudland/deploy/.ssh/cland.key | ||
|
||
[web] | ||
inst-dev ansible_host=192.168.1.128 ansible_ssh_private_key_file=/opt/cloudland/deploy/.ssh/cland.key | ||
|
||
[database] | ||
inst-dev ansible_host=192.168.1.128 ansible_ssh_private_key_file=/opt/cloudland/deploy/.ssh/cland.key | ||
|
||
[imgrepo] | ||
inst-dev ansible_host=192.168.1.128 ansible_ssh_private_key_file=/opt/cloudland/deploy/.ssh/cland.key |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
passwd=$1 | ||
|
||
su - postgres -c "psql -c \"alter user postgres with password '$passwd'\"" | ||
su - postgres -c "psql -c 'create database hypercube'" |
Oops, something went wrong.