mirror of
https://github.com/postgres/postgres.git
synced 2025-04-27 22:56:53 +03:00
Don't install postmaster symlink anymore
This has long been deprecated. Some of the build systems didn't even install it. Also remove man page. Reviewed-by: Karl O. Pinc <kop@karlpinc.com> Discussion: https://www.postgresql.org/message-id/flat/ece84b69-8f94-8b88-925f-64207cb3a2f0@enterprisedb.com
This commit is contained in:
parent
81266442fb
commit
37e2673350
@ -219,7 +219,6 @@ Complete list of usable sgml source files in this directory.
|
|||||||
<!ENTITY pgupgrade SYSTEM "pgupgrade.sgml">
|
<!ENTITY pgupgrade SYSTEM "pgupgrade.sgml">
|
||||||
<!ENTITY pgwaldump SYSTEM "pg_waldump.sgml">
|
<!ENTITY pgwaldump SYSTEM "pg_waldump.sgml">
|
||||||
<!ENTITY postgres SYSTEM "postgres-ref.sgml">
|
<!ENTITY postgres SYSTEM "postgres-ref.sgml">
|
||||||
<!ENTITY postmaster SYSTEM "postmaster.sgml">
|
|
||||||
<!ENTITY psqlRef SYSTEM "psql-ref.sgml">
|
<!ENTITY psqlRef SYSTEM "psql-ref.sgml">
|
||||||
<!ENTITY reindexdb SYSTEM "reindexdb.sgml">
|
<!ENTITY reindexdb SYSTEM "reindexdb.sgml">
|
||||||
<!ENTITY vacuumdb SYSTEM "vacuumdb.sgml">
|
<!ENTITY vacuumdb SYSTEM "vacuumdb.sgml">
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
<!--
|
|
||||||
doc/src/sgml/ref/postmaster.sgml
|
|
||||||
PostgreSQL documentation
|
|
||||||
-->
|
|
||||||
|
|
||||||
<refentry id="app-postmaster">
|
|
||||||
<indexterm zone="app-postmaster">
|
|
||||||
<primary>postmaster</primary>
|
|
||||||
</indexterm>
|
|
||||||
|
|
||||||
<refmeta>
|
|
||||||
<refentrytitle><application>postmaster</application></refentrytitle>
|
|
||||||
<manvolnum>1</manvolnum>
|
|
||||||
<refmiscinfo>Application</refmiscinfo>
|
|
||||||
</refmeta>
|
|
||||||
|
|
||||||
<refnamediv>
|
|
||||||
<refname>postmaster</refname>
|
|
||||||
<refpurpose><productname>PostgreSQL</productname> database server</refpurpose>
|
|
||||||
</refnamediv>
|
|
||||||
|
|
||||||
<refsynopsisdiv>
|
|
||||||
<cmdsynopsis>
|
|
||||||
<command>postmaster</command>
|
|
||||||
<arg rep="repeat"><replaceable>option</replaceable></arg>
|
|
||||||
</cmdsynopsis>
|
|
||||||
</refsynopsisdiv>
|
|
||||||
|
|
||||||
<refsect1>
|
|
||||||
<title>Description</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
<command>postmaster</command> is a deprecated alias of <command>postgres</command>.
|
|
||||||
</para>
|
|
||||||
</refsect1>
|
|
||||||
|
|
||||||
<refsect1>
|
|
||||||
<title>See Also</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
<xref linkend="app-postgres"/>
|
|
||||||
</para>
|
|
||||||
</refsect1>
|
|
||||||
</refentry>
|
|
@ -289,7 +289,6 @@
|
|||||||
&pgupgrade;
|
&pgupgrade;
|
||||||
&pgwaldump;
|
&pgwaldump;
|
||||||
&postgres;
|
&postgres;
|
||||||
&postmaster;
|
|
||||||
|
|
||||||
</reference>
|
</reference>
|
||||||
|
|
||||||
|
@ -216,12 +216,6 @@ endif
|
|||||||
|
|
||||||
install-bin: postgres $(POSTGRES_IMP) installdirs
|
install-bin: postgres $(POSTGRES_IMP) installdirs
|
||||||
$(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postgres$(X)'
|
$(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)
|
ifeq ($(MAKE_EXPORTS), true)
|
||||||
$(INSTALL_DATA) $(POSTGRES_IMP) '$(DESTDIR)$(pkglibdir)/$(POSTGRES_IMP)'
|
$(INSTALL_DATA) $(POSTGRES_IMP) '$(DESTDIR)$(pkglibdir)/$(POSTGRES_IMP)'
|
||||||
$(INSTALL_PROGRAM) $(MKLDEXPORT) '$(DESTDIR)$(pgxsdir)/$(MKLDEXPORT_DIR)/mkldexport.sh'
|
$(INSTALL_PROGRAM) $(MKLDEXPORT) '$(DESTDIR)$(pgxsdir)/$(MKLDEXPORT_DIR)/mkldexport.sh'
|
||||||
@ -250,7 +244,7 @@ endif
|
|||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f '$(DESTDIR)$(bindir)/postgres$(X)' '$(DESTDIR)$(bindir)/postmaster'
|
rm -f '$(DESTDIR)$(bindir)/postgres$(X)'
|
||||||
ifeq ($(MAKE_EXPORTS), true)
|
ifeq ($(MAKE_EXPORTS), true)
|
||||||
rm -f '$(DESTDIR)$(pkglibdir)/$(POSTGRES_IMP)'
|
rm -f '$(DESTDIR)$(pkglibdir)/$(POSTGRES_IMP)'
|
||||||
rm -f '$(DESTDIR)$(pgxsdir)/$(MKLDEXPORT_DIR)/mkldexport.sh'
|
rm -f '$(DESTDIR)$(pgxsdir)/$(MKLDEXPORT_DIR)/mkldexport.sh'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user