Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
e41e0fc5
Commit
e41e0fc5
authored
Jul 11, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move export PGDATA to the proper place. Quote some variable substitutions.
parent
443db06d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
18 deletions
+16
-18
src/bin/pg_ctl/pg_ctl.sh
src/bin/pg_ctl/pg_ctl.sh
+16
-18
No files found.
src/bin/pg_ctl/pg_ctl.sh
View file @
e41e0fc5
...
...
@@ -8,7 +8,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Attic/pg_ctl.sh,v 1.2
1 2001/07/11 04:57:34
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Attic/pg_ctl.sh,v 1.2
2 2001/07/11 16:16:52
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -79,7 +79,7 @@ fi
if
echo
"
$0
"
|
grep
'/'
>
/dev/null 2>&1
then
# explicit dir name given
self_path
=
`
echo
$0
|
sed
's,/[^/]*$,,'
`
# (dirname command is not portable)
self_path
=
`
echo
"
$0
"
|
sed
's,/[^/]*$,,'
`
# (dirname command is not portable)
else
# look for it in PATH ('which' command is not portable)
for
dir
in
`
echo
"
$PATH
"
|
sed
's/:/ /g'
`
...
...
@@ -116,7 +116,7 @@ shutdown_mode=smart
while
[
"$#"
-gt
0
]
do
case
$1
in
case
"
$1
"
in
-h
|
--help
|
-
\?
)
echo
"
$help
"
exit
0
...
...
@@ -127,16 +127,17 @@ do
;;
-D
)
shift
PGDATA
=
"
$1
"
# pass environment into new postmaster
export
PGDATA
=
"
$1
"
;;
-l
)
logfile
=
$2
logfile
=
"
$2
"
shift
;;
-l
*
)
logfile
=
`
echo
"
$1
"
|
sed
's/^-l//'
`
;;
-m
)
shutdown_mode
=
$2
shutdown_mode
=
"
$2
"
shift
;;
-m
*
)
shutdown_mode
=
`
echo
"
$1
"
|
sed
's/^-m//'
`
...
...
@@ -197,7 +198,7 @@ if [ -z "$PGDATA" ];then
fi
if
[
-z
"
$wait
"
]
;
then
case
$op
in
case
"
$op
"
in
start
)
wait
=
no
;;
stop
)
wait
=
yes
;;
restart
)
wait
=
no
;;
# must wait on shutdown anyhow
...
...
@@ -205,7 +206,7 @@ if [ -z "$wait" ]; then
fi
case
$shutdown_mode
in
case
"
$shutdown_mode
"
in
s|smart
)
sig
=
"-TERM"
;;
...
...
@@ -227,7 +228,7 @@ DEFPOSTOPTS=$PGDATA/postmaster.opts.default
POSTOPTSFILE
=
$PGDATA
/postmaster.opts
PIDFILE
=
$PGDATA
/postmaster.pid
if
[
$op
=
"status"
]
;
then
if
[
"
$op
"
=
"status"
]
;
then
if
[
-f
$PIDFILE
]
;
then
PID
=
`
sed
-n
1p
$PIDFILE
`
if
[
$PID
-lt
0
]
;
then
...
...
@@ -245,7 +246,7 @@ if [ $op = "status" ];then
fi
fi
if
[
$op
=
"stop"
-o
$op
=
"restart"
]
;
then
if
[
"
$op
"
=
"stop"
-o
"
$op
"
=
"restart"
]
;
then
if
[
-f
$PIDFILE
]
;
then
PID
=
`
sed
-n
1p
$PIDFILE
`
if
[
$PID
-lt
0
]
;
then
...
...
@@ -255,7 +256,7 @@ if [ $op = "stop" -o $op = "restart" ];then
exit
1
fi
kill
$sig
$PID
kill
"
$sig
"
$PID
# wait for postmaster to shut down
if
[
"
$wait
"
=
yes
-o
"
$op
"
=
restart
]
;
then
...
...
@@ -284,7 +285,7 @@ if [ $op = "stop" -o $op = "restart" ];then
else
# ! -f $PIDFILE
echo
"
$CMDNAME
: cannot find
$PIDFILE
"
1>&2
echo
"Is postmaster running?"
1>&2
if
[
$op
=
"restart"
]
;
then
if
[
"
$op
"
=
"restart"
]
;
then
echo
"starting postmaster anyway"
1>&2
else
exit
1
...
...
@@ -292,7 +293,7 @@ if [ $op = "stop" -o $op = "restart" ];then
fi
fi
# stop or restart
if
[
$op
=
"start"
-o
$op
=
"restart"
]
;
then
if
[
"
$op
"
=
"start"
-o
"
$op
"
=
"restart"
]
;
then
oldpid
=
""
if
[
-f
$PIDFILE
]
;
then
echo
"
$CMDNAME
: Another postmaster may be running. Trying to start postmaster anyway."
1>&2
...
...
@@ -301,7 +302,7 @@ if [ $op = "start" -o $op = "restart" ];then
# no -o given
if
[
-z
"
$POSTOPTS
"
]
;
then
if
[
$op
=
"start"
]
;
then
if
[
"
$op
"
=
"start"
]
;
then
# if we are in start mode, then look for postmaster.opts.default
if
[
-f
$DEFPOSTOPTS
]
;
then
eval set
X
"
`
cat
$DEFPOSTOPTS
`
"
;
shift
...
...
@@ -309,16 +310,13 @@ if [ $op = "start" -o $op = "restart" ];then
else
# if we are in restart mode, then look for postmaster.opts
eval set
X
"
`
cat
$POSTOPTSFILE
`
"
;
shift
po_path
=
$1
po_path
=
"
$1
"
shift
fi
else
# -o given
eval set
X
"
$POSTOPTS
"
;
shift
fi
# pass environment into new postmaster
export
PGDATA
if
[
-n
"
$logfile
"
]
;
then
"
$po_path
"
"
$@
"
</dev/null
>>
$logfile
2>&1 &
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment