]> granicus.if.org Git - postgresql/commitdiff
Improve readability of config location params by adding newline.
authorBruce Momjian <bruce@momjian.us>
Sat, 4 Jun 2005 18:13:59 +0000 (18:13 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 4 Jun 2005 18:13:59 +0000 (18:13 +0000)
src/backend/utils/misc/postgresql.conf.sample
src/tools/make_mkid

index 88272d35b5695147a8ced1df2b636d00d198fa9a..0e88d4c5ed09b4536699fc012f2e7304b2dba5ed 100644 (file)
@@ -31,6 +31,7 @@
 
 # The default values of these variables are driven from the -D command line
 # switch or PGDATA environment variable, represented here as ConfigDir.
+
 # data_directory = 'ConfigDir'         # use data in another directory
 # hba_file = 'ConfigDir/pg_hba.conf'   # the host-based authentication file
 # ident_file = 'ConfigDir/pg_ident.conf'  # the IDENT configuration file
index ac71bd92b5badf2871547d550207efeb43422bd7..13a848a7ee38e31935fc22c94071f762c7646551 100755 (executable)
@@ -1,9 +1,10 @@
-#!/bin/sh
+:
 
 mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \
        -type f -name '*.[chyl]' -print|sed 's;//;/;g'`
 
-find . -name  'CVS' -prune -o -type d -print  |while read DIR
+find . \( -name  'CVS' -prune -o -name  '_xlk' -prune \) -o -type d -print  |
+while read DIR
 do
        [ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID
 done