Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
040bb787
Commit
040bb787
authored
24 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Install the sample pg_ident.conf file into /home/postgres/testversion/data, just like pg_hba.conf.
parent
74299f66
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/bin/initdb/initdb.sh
+10
-5
10 additions, 5 deletions
src/bin/initdb/initdb.sh
with
10 additions
and
5 deletions
src/bin/initdb/initdb.sh
+
10
−
5
View file @
040bb787
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
#
#
# Copyright (c) 1994, Regents of the University of California
# Copyright (c) 1994, Regents of the University of California
#
#
# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.11
5
2000/11/21
01:11:49
tgl Exp $
# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.11
6
2000/11/21
20:55:57
tgl Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -337,6 +337,7 @@ TEMPLATE1_DESCR="$datadir"/template1.description
...
@@ -337,6 +337,7 @@ TEMPLATE1_DESCR="$datadir"/template1.description
GLOBAL_DESCR
=
"
$datadir
"
/global.description
GLOBAL_DESCR
=
"
$datadir
"
/global.description
PG_HBA_SAMPLE
=
"
$datadir
"
/pg_hba.conf.sample
PG_HBA_SAMPLE
=
"
$datadir
"
/pg_hba.conf.sample
PG_IDENT_SAMPLE
=
"
$datadir
"
/pg_ident.conf.sample
POSTGRESQL_CONF_SAMPLE
=
"
$datadir
"
/postgresql.conf.sample
POSTGRESQL_CONF_SAMPLE
=
"
$datadir
"
/postgresql.conf.sample
if
[
"
$show_setting
"
=
yes
]
||
[
"
$debug
"
=
yes
]
if
[
"
$show_setting
"
=
yes
]
||
[
"
$debug
"
=
yes
]
...
@@ -345,7 +346,8 @@ then
...
@@ -345,7 +346,8 @@ then
echo
"Initdb variables:"
echo
"Initdb variables:"
for
var
in
PGDATA datadir PGPATH TEMPFILE MULTIBYTE MULTIBYTEID
\
for
var
in
PGDATA datadir PGPATH TEMPFILE MULTIBYTE MULTIBYTEID
\
POSTGRES_SUPERUSERNAME POSTGRES_SUPERUSERID TEMPLATE1_BKI GLOBAL_BKI
\
POSTGRES_SUPERUSERNAME POSTGRES_SUPERUSERID TEMPLATE1_BKI GLOBAL_BKI
\
TEMPLATE1_DESCR GLOBAL_DESCR POSTGRESQL_CONF_SAMPLE PG_HBA_SAMPLE
;
do
TEMPLATE1_DESCR GLOBAL_DESCR POSTGRESQL_CONF_SAMPLE
\
PG_HBA_SAMPLE PG_IDENT_SAMPLE
;
do
eval
"echo ' '
$var
=
\$
$var
"
eval
"echo ' '
$var
=
\$
$var
"
done
done
fi
fi
...
@@ -354,7 +356,8 @@ if [ "$show_setting" = yes ] ; then
...
@@ -354,7 +356,8 @@ if [ "$show_setting" = yes ] ; then
exit
0
exit
0
fi
fi
for
PREREQ_FILE
in
"
$TEMPLATE1_BKI
"
"
$GLOBAL_BKI
"
"
$PG_HBA_SAMPLE
"
for
PREREQ_FILE
in
"
$TEMPLATE1_BKI
"
"
$GLOBAL_BKI
"
"
$PG_HBA_SAMPLE
"
\
"
$PG_IDENT_SAMPLE
"
do
do
if
[
!
-f
"
$PREREQ_FILE
"
]
;
then
if
[
!
-f
"
$PREREQ_FILE
"
]
;
then
(
(
...
@@ -485,9 +488,11 @@ then
...
@@ -485,9 +488,11 @@ then
echo
$short_version
>
"
$PGDATA
/PG_VERSION"
||
exit_nicely
echo
$short_version
>
"
$PGDATA
/PG_VERSION"
||
exit_nicely
cp
"
$PG_HBA_SAMPLE
"
"
$PGDATA
"
/pg_hba.conf
||
exit_nicely
cp
"
$PG_HBA_SAMPLE
"
"
$PGDATA
"
/pg_hba.conf
||
exit_nicely
cp
"
$PG_IDENT_SAMPLE
"
"
$PGDATA
"
/pg_ident.conf
||
exit_nicely
cp
"
$POSTGRESQL_CONF_SAMPLE
"
"
$PGDATA
"
/postgresql.conf
||
exit_nicely
cp
"
$POSTGRESQL_CONF_SAMPLE
"
"
$PGDATA
"
/postgresql.conf
||
exit_nicely
chmod
0600
"
$PGDATA
"
/pg_hba.conf
"
$PGDATA
"
/postgresql.conf
chmod
0600
"
$PGDATA
"
/pg_hba.conf
"
$PGDATA
"
/pg_ident.conf
\
"
$PGDATA
"
/postgresql.conf
fi
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment