This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.sh
executable file
·73 lines (64 loc) · 1.92 KB
/
start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/bash
# Copyright 2016 Crunchy Data Solutions, Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
source /opt/cpm/bin/setenv.sh
source check-for-secrets.sh
if [ ! -v PG_MODE ]; then
echo "PG_MODE env var is not set, aborting"
exit 1
fi
if [ ! -v PG_MASTER_USER ]; then
echo "PG_MASTER_USER env var is not set, aborting"
exit 1
fi
if [ ! -v PG_MASTER_PASSWORD ]; then
echo "PG_MASTER_PASSWORD env var is not set, aborting"
exit 1
fi
if [ ! -v PG_USER ]; then
echo "PG_USER env var is not set, aborting"
exit 1
fi
if [ ! -v PG_PASSWORD ]; then
echo "PG_PASSWORD env var is not set, aborting"
exit 1
fi
if [ ! -v PG_DATABASE ]; then
echo "PG_DATABASE env var is not set, aborting"
exit 1
fi
if [ ! -v PG_ROOT_PASSWORD ]; then
echo "PG_ROOT_PASSWORD env var is not set, aborting"
exit 1
fi
export PG_MODE=$PG_MODE
export PG_MASTER_HOST=$PG_MASTER_HOST
export PG_MASTER_PORT=$PG_MASTER_PORT
export PG_MASTER_USER=$PG_MASTER_USER
export PG_MASTER_PASSWORD=$PG_MASTER_PASSWORD
export PG_USER=$PG_USER
export PG_PASSWORD=$PG_PASSWORD
export PG_DATABASE=$PG_DATABASE
export PG_ROOT_PASSWORD=$PG_ROOT_PASSWORD
if [[ "x$PG_MODE" == "xmaster" ]]; then
mkdir -p /pgdata/master
chmod 0700 /pgdata/master
else
mkdir -p /pgdata/$HOSTNAME
chmod 0700 /pgdata/$HOSTNAME
fi
start-pg-wrapper.sh
while true; do
echo "sleeping "
sleep 1000
done