-
Notifications
You must be signed in to change notification settings - Fork 0
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 #55 from pj8/prevent-output
Prevent output on install
- Loading branch information
Showing
6 changed files
with
66 additions
and
49 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
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 +1 @@ | ||
v1.2.11 | ||
v1.2.12 |
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
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,51 @@ | ||
#!/usr/bin/env bash | ||
set -aeuvx | ||
|
||
. ../lib/functions.sh | ||
|
||
type=postgresql | ||
version=13.2 | ||
|
||
cd ../$type | ||
rm -fr $type-*.tar.gz | ||
cd .. | ||
|
||
date=$(date +%Y%m%d%H%M%S) | ||
md5="md5" | ||
[ "$(getOS)" = "linux" ] && md5="md5sum" | ||
hash=$(echo "dbdb-$date" | $md5 | cut -d ' ' -f 1) | ||
|
||
echo "Test create" | ||
./$type/create.sh dbdb-test-$hash $version random | ||
echo "Test port" | ||
./$type/port.sh dbdb-test-$hash | ||
echo "Test start" | ||
./$type/start.sh dbdb-test-$hash | ||
echo "Test status" | ||
./$type/status.sh dbdb-test-$hash | ||
echo "Test restart" | ||
./$type/restart.sh dbdb-test-$hash | ||
echo "Test stop" | ||
./$type/stop.sh dbdb-test-$hash | ||
echo "Test delete" | ||
./$type/delete.sh dbdb-test-$hash | ||
|
||
echo "Test create" | ||
./$type/create.sh -f json dbdb-test-$hash $version random | jq | ||
echo "Test port" | ||
./$type/port.sh -f json dbdb-test-$hash | jq | ||
echo "Test start" | ||
./$type/start.sh -f json dbdb-test-$hash | jq | ||
echo "Test status" | ||
./$type/status.sh -f json dbdb-test-$hash | jq | ||
echo "Test restart" | ||
./$type/restart.sh -f json dbdb-test-$hash | jq | ||
echo "Test stop" | ||
./$type/stop.sh -f json dbdb-test-$hash | jq | ||
echo "Test delete" | ||
./$type/delete.sh -f json dbdb-test-$hash | jq | ||
|
||
./dbdb.sh | ||
./$type/create-start.sh -f json dbdb-test-$hash $version random | jq | ||
./dbdb.sh -f json | jq | ||
./$type/delete.sh dbdb-test-$hash |