Don't install postmaster symlink anymore
authorPeter Eisentraut
Thu, 26 Jan 2023 10:33:01 +0000 (11:33 +0100)
committerPeter Eisentraut
Thu, 26 Jan 2023 10:33:01 +0000 (11:33 +0100)
This has long been deprecated.  Some of the build systems didn't even
install it.

Also remove man page.

Reviewed-by: Karl O. Pinc
Discussion: https://www.postgresql.org/message-id/flat/ece84b69-8f94-8b88-925f-64207cb3a2f0@enterprisedb.com

doc/src/sgml/ref/allfiles.sgml
doc/src/sgml/ref/postmaster.sgml [deleted file]
doc/src/sgml/reference.sgml
src/backend/Makefile

index e90a0e1f83725a4c8618ee695332adf1593ca01a..54b5f22d6ec9f1f11f2cb5cdf7113daeaa9b0df1 100644 (file)
@@ -219,7 +219,6 @@ Complete list of usable sgml source files in this directory.
 
 
 
-
 
 
 
diff --git a/doc/src/sgml/ref/postmaster.sgml b/doc/src/sgml/ref/postmaster.sgml
deleted file mode 100644 (file)
index 7b544ed..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-  postmaster
-
-  postmaster
-  1
-  Application
-
-  postmaster
-  PostgreSQL database server
-
-  
-   postmaster
-   option
-  
-
-  Description
-
-  
-   postmaster is a deprecated alias of postgres.
-  
-
-  See Also
-
-  
-   
-  
-
index a3b743e8c1e7c1f4b1ffff6f13a155b4f7195e4e..e11b4b6130753970f978ca45b37b0dd345694d1f 100644 (file)
    &pgupgrade;
    &pgwaldump;
    &postgres;
-   &postmaster;
 
  
 
index 3d851f757f03472362081509d16d30f65bd6bc8e..86e6dcb79256bd04e176ae19da20acbfa17357d2 100644 (file)
@@ -216,12 +216,6 @@ endif
 
 install-bin: postgres $(POSTGRES_IMP) installdirs
    $(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postgres$(X)'
-ifneq ($(PORTNAME), win32)
-   @rm -f '$(DESTDIR)$(bindir)/postmaster$(X)'
-   ln -s postgres$(X) '$(DESTDIR)$(bindir)/postmaster$(X)'
-else
-   $(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postmaster$(X)'
-endif
 ifeq ($(MAKE_EXPORTS), true)
    $(INSTALL_DATA) $(POSTGRES_IMP) '$(DESTDIR)$(pkglibdir)/$(POSTGRES_IMP)'
    $(INSTALL_PROGRAM) $(MKLDEXPORT) '$(DESTDIR)$(pgxsdir)/$(MKLDEXPORT_DIR)/mkldexport.sh'
@@ -250,7 +244,7 @@ endif
 ##########################################################################
 
 uninstall:
-   rm -f '$(DESTDIR)$(bindir)/postgres$(X)' '$(DESTDIR)$(bindir)/postmaster'
+   rm -f '$(DESTDIR)$(bindir)/postgres$(X)'
 ifeq ($(MAKE_EXPORTS), true)
    rm -f '$(DESTDIR)$(pkglibdir)/$(POSTGRES_IMP)'
    rm -f '$(DESTDIR)$(pgxsdir)/$(MKLDEXPORT_DIR)/mkldexport.sh'