File tree Expand file tree Collapse file tree 12 files changed +39
-35
lines changed Expand file tree Collapse file tree 12 files changed +39
-35
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ SUBDIRS = \
28
28
oid2name \
29
29
pageinspect \
30
30
passwordcheck \
31
- pg_archivecleanup \
32
31
pg_buffercache \
33
32
pg_freespacemap \
34
33
pg_prewarm \
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -202,7 +202,6 @@ pages.
202
202
part of the core <productname>PostgreSQL</productname> distribution.
203
203
</para>
204
204
205
- &pgarchivecleanup;
206
205
&pgstandby;
207
206
&pgtestfsync;
208
207
&pgtesttiming;
Original file line number Diff line number Diff line change 126
126
<!ENTITY pageinspect SYSTEM "pageinspect.sgml">
127
127
<!ENTITY passwordcheck SYSTEM "passwordcheck.sgml">
128
128
<!ENTITY pgbench SYSTEM "pgbench.sgml">
129
- <!ENTITY pgarchivecleanup SYSTEM "pgarchivecleanup.sgml">
130
129
<!ENTITY pgbuffercache SYSTEM "pgbuffercache.sgml">
131
130
<!ENTITY pgcrypto SYSTEM "pgcrypto.sgml">
132
131
<!ENTITY pgfreespacemap SYSTEM "pgfreespacemap.sgml">
Original file line number Diff line number Diff line change @@ -179,6 +179,7 @@ Complete list of usable sgml source files in this directory.
179
179
<!ENTITY dropuser SYSTEM "dropuser.sgml">
180
180
<!ENTITY ecpgRef SYSTEM "ecpg-ref.sgml">
181
181
<!ENTITY initdb SYSTEM "initdb.sgml">
182
+ <!ENTITY pgarchivecleanup SYSTEM "pgarchivecleanup.sgml">
182
183
<!ENTITY pgBasebackup SYSTEM "pg_basebackup.sgml">
183
184
<!ENTITY pgConfig SYSTEM "pg_config-ref.sgml">
184
185
<!ENTITY pgControldata SYSTEM "pg_controldata.sgml">
Original file line number Diff line number Diff line change 1
- <!-- doc/src/sgml/pgarchivecleanup.sgml -->
1
+ <!-- doc/src/sgml/ref/ pgarchivecleanup.sgml -->
2
2
3
3
<refentry id="pgarchivecleanup">
4
4
<indexterm zone="pgarchivecleanup">
@@ -193,14 +193,6 @@ archive_cleanup_command = 'pg_archivecleanup -d /mnt/standby/archive %r 2>>clean
193
193
</itemizedlist>
194
194
</refsect1>
195
195
196
- <refsect1>
197
- <title>Author</title>
198
-
199
- <para>
200
- Simon Riggs <email>simon@2ndquadrant.com</email>
201
- </para>
202
- </refsect1>
203
-
204
196
<refsect1>
205
197
<title>See Also</title>
206
198
Original file line number Diff line number Diff line change 257
257
</partintro>
258
258
259
259
&initdb;
260
+ &pgarchivecleanup;
260
261
&pgControldata;
261
262
&pgCtl;
262
263
&pgResetxlog;
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ include $(top_builddir)/src/Makefile.global
15
15
16
16
SUBDIRS = \
17
17
initdb \
18
+ pg_archivecleanup \
18
19
pg_basebackup \
19
20
pg_config \
20
21
pg_controldata \
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ # src/bin/pg_archivecleanup/Makefile
2
+
3
+ PGFILEDESC = "pg_archivecleanup - cleans archive when used with streaming replication"
4
+ PGAPPICON = win32
5
+
6
+ subdir = src/bin/pg_archivecleanup
7
+ top_builddir = ../../..
8
+ include $(top_builddir ) /src/Makefile.global
9
+
10
+ OBJS = pg_archivecleanup.o $(WIN32RES )
11
+
12
+ all : pg_archivecleanup
13
+
14
+ pg_archivecleanup : $(OBJS ) | submake-libpgport
15
+ $(CC ) $(CFLAGS ) $^ $(LDFLAGS ) $(LDFLAGS_EX ) $(LIBS ) -o $@ $(X )
16
+
17
+ install : all installdirs
18
+ $(INSTALL_PROGRAM ) pg_archivecleanup$(X ) ' $(DESTDIR)$(bindir)/pg_archivecleanup$(X)'
19
+
20
+ installdirs :
21
+ $(MKDIR_P ) ' $(DESTDIR)$(bindir)'
22
+
23
+ uninstall :
24
+ rm -f ' $(DESTDIR)$(bindir)/pg_archivecleanup$(X)'
25
+
26
+ clean distclean maintainer-clean :
27
+ rm -f pg_archivecleanup$(X ) $(OBJS )
You can’t perform that action at this time.
0 commit comments