add htcacheclean.service(8) man page
This commit is contained in:
parent
f201a4ebc1
commit
c72daf66bd
1
.gitignore
vendored
1
.gitignore
vendored
@ -31,3 +31,4 @@ x86_64
|
|||||||
/httpd-*.tar.bz2
|
/httpd-*.tar.bz2
|
||||||
/httpd*.8
|
/httpd*.8
|
||||||
/results_httpd
|
/results_httpd
|
||||||
|
/htcacheclean.service.8
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Disk Cache Cleaning Daemon for Apache HTTP Server
|
Description=Disk Cache Cleaning Daemon for the Apache HTTP Server
|
||||||
After=httpd.service
|
After=httpd.service
|
||||||
|
Documentation=man:htcacheclean.service(8)
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=forking
|
Type=forking
|
||||||
|
123
htcacheclean.service.xml
Normal file
123
htcacheclean.service.xml
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||||
|
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
|
||||||
|
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
Copyright 2018 Red Hat, Inc.
|
||||||
|
|
||||||
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
contributor license agreements. See the NOTICE file distributed with
|
||||||
|
this work for additional information regarding copyright ownership.
|
||||||
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||||
|
(the "License"); you may not use this file except in compliance with
|
||||||
|
the License. You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language overning permissions and
|
||||||
|
limitations under the License.
|
||||||
|
-->
|
||||||
|
<refentry>
|
||||||
|
<refentryinfo>
|
||||||
|
<title>htcacheclean systemd unit</title>
|
||||||
|
<productname>httpd</productname>
|
||||||
|
<author><contrib>Author</contrib><surname>Orton</surname><firstname>Joe</firstname><email>jorton@redhat.com</email></author>
|
||||||
|
</refentryinfo>
|
||||||
|
|
||||||
|
<refmeta>
|
||||||
|
<refentrytitle>htcacheclean.service</refentrytitle>
|
||||||
|
<manvolnum>8</manvolnum>
|
||||||
|
</refmeta>
|
||||||
|
|
||||||
|
<refnamediv>
|
||||||
|
<refname>htcacheclean.service</refname>
|
||||||
|
<refpurpose>htcacheclean unit file for systemd</refpurpose>
|
||||||
|
</refnamediv>
|
||||||
|
|
||||||
|
<refsynopsisdiv>
|
||||||
|
<para>
|
||||||
|
<filename>/usr/lib/systemd/system/htcacheclean.service</filename>
|
||||||
|
</para>
|
||||||
|
</refsynopsisdiv>
|
||||||
|
|
||||||
|
<refsect1>
|
||||||
|
<title>Description</title>
|
||||||
|
|
||||||
|
<para>This manual page describes the <command>systemd</command>
|
||||||
|
unit file for the <command>htcacheclean</command> daemon. This
|
||||||
|
unit file provides a service which runs
|
||||||
|
<command>htcacheclean</command> is run in daemon mode,
|
||||||
|
periodically cleaning the disk cache root to ensure disk space
|
||||||
|
usage is within configured limits.</para>
|
||||||
|
|
||||||
|
</refsect1>
|
||||||
|
|
||||||
|
<refsect1>
|
||||||
|
<title>Options</title>
|
||||||
|
|
||||||
|
<para>The service is configured by configuration file
|
||||||
|
<filename>/etc/sysconfig/htcacheclean</filename>. The following
|
||||||
|
variables are used, following standard <command>systemd</command>
|
||||||
|
<varname>EnvironmentFile=</varname> syntax:</para>
|
||||||
|
|
||||||
|
<variablelist>
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>INTERVAL=</varname></term>
|
||||||
|
|
||||||
|
<listitem><para>Sets the interval between cache clean runs, in
|
||||||
|
minutes. By default this is configured as
|
||||||
|
<emphasis>15</emphasis>.</para></listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>CACHE_ROOT=</varname></term>
|
||||||
|
|
||||||
|
<listitem><para>Sets the directory name used for the cache
|
||||||
|
root. By default this is configured as
|
||||||
|
<filename>/var/cache/httpd/proxy</filename>.</para></listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>LIMIT=</varname></term>
|
||||||
|
|
||||||
|
<listitem><para>Sets the total disk cache space limit, in
|
||||||
|
bytes. Use a <emphasis>K</emphasis> or <emphasis>M</emphasis>
|
||||||
|
suffix to signify kilobytes or megabytes. By default this is
|
||||||
|
set to <emphasis>100M</emphasis>.</para></listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>OPTIONS=</varname></term>
|
||||||
|
|
||||||
|
<listitem><para>Any other options to pass to
|
||||||
|
<command>htcacheclean</command>.</para></listitem>
|
||||||
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
|
</refsect1>
|
||||||
|
|
||||||
|
<refsect1>
|
||||||
|
<title>Files</title>
|
||||||
|
|
||||||
|
<para><filename>/usr/lib/systemd/system/htcacheclean.service</filename>,
|
||||||
|
<filename>/etc/sysconfig/htcacheclean</filename></para>
|
||||||
|
</refsect1>
|
||||||
|
|
||||||
|
<refsect1>
|
||||||
|
<title>See also</title>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
<citerefentry><refentrytitle>htcacheclean</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
|
||||||
|
<citerefentry><refentrytitle>httpd</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
|
||||||
|
<citerefentry><refentrytitle>httpd.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
|
||||||
|
<citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>8</manvolnum></citerefentry>
|
||||||
|
</para>
|
||||||
|
</refsect1>
|
||||||
|
|
||||||
|
</refentry>
|
||||||
|
|
||||||
|
<!-- LocalWords: systemd httpd htcacheclean
|
||||||
|
-->
|
@ -13,7 +13,7 @@
|
|||||||
Summary: Apache HTTP Server
|
Summary: Apache HTTP Server
|
||||||
Name: httpd
|
Name: httpd
|
||||||
Version: 2.4.34
|
Version: 2.4.34
|
||||||
Release: 10%{?dist}
|
Release: 11%{?dist}
|
||||||
URL: https://httpd.apache.org/
|
URL: https://httpd.apache.org/
|
||||||
Source0: https://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2
|
Source0: https://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2
|
||||||
Source1: index.html
|
Source1: index.html
|
||||||
@ -49,6 +49,7 @@ Source29: 01-md.conf
|
|||||||
Source30: README.confd
|
Source30: README.confd
|
||||||
Source31: README.confmod
|
Source31: README.confmod
|
||||||
Source32: httpd.service.xml
|
Source32: httpd.service.xml
|
||||||
|
Source33: htcacheclean.service.xml
|
||||||
Source40: htcacheclean.service
|
Source40: htcacheclean.service
|
||||||
Source41: htcacheclean.sysconf
|
Source41: htcacheclean.sysconf
|
||||||
Source42: httpd-init.service
|
Source42: httpd-init.service
|
||||||
@ -275,6 +276,7 @@ sed 's/@MPM@/%{mpm}/' < $RPM_SOURCE_DIR/httpd.service.xml \
|
|||||||
> httpd.service.xml
|
> httpd.service.xml
|
||||||
|
|
||||||
xmlto man ./httpd.service.xml
|
xmlto man ./httpd.service.xml
|
||||||
|
xmlto man $RPM_SOURCE_DIR/htcacheclean.service.xml
|
||||||
|
|
||||||
: Building with MMN %{mmn}, MMN-ISA %{mmnisa}
|
: Building with MMN %{mmn}, MMN-ISA %{mmnisa}
|
||||||
: Default MPM is %{mpm}, vendor string is '%{vstring}'
|
: Default MPM is %{mpm}, vendor string is '%{vstring}'
|
||||||
@ -497,7 +499,7 @@ install -m 644 -p $RPM_SOURCE_DIR/httpd.logrotate \
|
|||||||
|
|
||||||
# Install systemd service man pages
|
# Install systemd service man pages
|
||||||
install -m 644 -p httpd.service.8 httpd-init.service.8 httpd.socket.8 \
|
install -m 644 -p httpd.service.8 httpd-init.service.8 httpd.socket.8 \
|
||||||
httpd@.service.8 \
|
httpd@.service.8 htcacheclean.service.8 \
|
||||||
$RPM_BUILD_ROOT%{_mandir}/man8
|
$RPM_BUILD_ROOT%{_mandir}/man8
|
||||||
|
|
||||||
# fix man page paths
|
# fix man page paths
|
||||||
@ -733,6 +735,9 @@ exit $rv
|
|||||||
%{_rpmconfigdir}/macros.d/macros.httpd
|
%{_rpmconfigdir}/macros.d/macros.httpd
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 31 2018 Joe Orton <jorton@redhat.com> - 2.4.34-11
|
||||||
|
- add htcacheclean.service(8) man page
|
||||||
|
|
||||||
* Fri Sep 28 2018 Joe Orton <jorton@redhat.com> - 2.4.34-10
|
* Fri Sep 28 2018 Joe Orton <jorton@redhat.com> - 2.4.34-10
|
||||||
- apachectl: don't read /etc/sysconfig/httpd
|
- apachectl: don't read /etc/sysconfig/httpd
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user