source: general/sysutils/fcron.xml@ ba902838

gnome
Last change on this file since ba902838 was c463c87, checked in by Christopher Gregory <cjg@…>, 10 years ago

Removed excess white space and updated systemd instructions on svnserver autofs bluez fcron sysstat nfs-utils ntp rsync samba wpa_supplicant
avahi mariadb postgresql exim postfix apache bind proftpd vsftpd openldap unbound xinetd and clutter pages

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/gnome@13434 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 9.7 KB
RevLine 
[52d29f7]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[52d29f7]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[30edc031]7 <!ENTITY fcron-download-http "http://fcron.free.fr/archives/fcron-&fcron-version;.src.tar.gz">
[c1968e6]8 <!ENTITY fcron-download-ftp " ">
9<!-- <!ENTITY fcron-download-ftp "ftp://ftp.seul.org/pub/fcron/fcron-&fcron-version;.src.tar.gz">-->
[65f4210a]10 <!ENTITY fcron-md5sum "b58ce88344eb4c80a353066547d20a24">
11 <!ENTITY fcron-size "584 KB">
12 <!ENTITY fcron-buildsize "5.1 MB">
[354f5e4d]13 <!ENTITY fcron-time "0.1 SBU">
[52d29f7]14]>
15
[5c5cdbc]16<sect1 id="fcron" xreflabel="Fcron-&fcron-version;">
[30edc031]17 <?dbhtml filename="fcron.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Fcron-&fcron-version;</title>
25
26 <indexterm zone="fcron">
27 <primary sortas="a-Fcron">Fcron</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Fcron</title>
32
33 <para>The <application>Fcron</application> package contains a periodical
34 command scheduler which aims at replacing <application>Vixie
35 Cron</application>.</para>
36
[41b674d]37 &lfs75_checked;
[61a8dd8]38
[30edc031]39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>Download (HTTP): <ulink url="&fcron-download-http;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download (FTP): <ulink url="&fcron-download-ftp;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download MD5 sum: &fcron-md5sum;</para>
49 </listitem>
50 <listitem>
51 <para>Download size: &fcron-size;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated disk space required: &fcron-buildsize;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated build time: &fcron-time;</para>
58 </listitem>
59 </itemizedlist>
[00bf2c9]60<!--
[7ad652c]61 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
62 <itemizedlist spacing="compact">
63 <listitem>
64 <para>
65 Required patch:
66 <ulink url="&patch-root;/fcron-&fcron-version;-sendmail_upstream-1.patch"/>
67 </para>
68 </listitem>
69 </itemizedlist>
[00bf2c9]70-->
[30edc031]71 <bridgehead renderas="sect3">Fcron Dependencies</bridgehead>
[bccbdaea]72
[30edc031]73 <bridgehead renderas="sect4">Optional</bridgehead>
[7f5c97e]74 <para role="optional">An <xref linkend="server-mail"/>,
[448900a5]75 <ulink url="../postlfs/editors.html">text editor</ulink> (default is
76 <command>vi</command> from the <xref linkend="vim"/> package),
[6603f8b]77 <xref linkend="linux-pam"/>,
[12b202ed]78 <xref linkend="docbook-utils"/>
79 </para>
[30edc031]80
[1039de3]81 <para condition="html" role="usernotes">User Notes:
82 <ulink url="&blfs-wiki;/fcron"/></para>
83
[30edc031]84 </sect2>
85
86 <sect2 role="installation">
87 <title>Installation of Fcron</title>
88
[201fca3d]89 <note>
90 <para>
91 Systemd logging daemon, systemd-journald will automatically log
[cae7a6fb]92 all the messages from the services started by systemd.
[201fca3d]93 </para>
94 </note>
95
[539ace5]96 <para>For security reasons, an unprivileged user and group for
[b4054a8]97 <application>Fcron</application> should be created (perform as the
98 <systemitem class='username'>root</systemitem> user):</para>
[30edc031]99
[b785ab29]100<screen role="root"><userinput>groupadd -g 22 fcron &amp;&amp;
101useradd -d /dev/null -c "Fcron User" -g fcron -s /bin/false -u 22 fcron</userinput></screen>
[30edc031]102
[539ace5]103 <para>Install <application>Fcron</application> by running the following
[30edc031]104 commands:</para>
105
[00bf2c9]106<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
[8bb9f27d]107 --localstatedir=/var --without-sendmail --with-boot-install=no &amp;&amp;
[30edc031]108make</userinput></screen>
109
110 <para>This package does not come with a test suite.</para>
111
112 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
113
114<screen role="root"><userinput>make install</userinput></screen>
115
[65f4210a]116 <para>DESTDIR install must be done as <systemitem class="username">root</systemitem> user.</para>
117
[30edc031]118 </sect2>
119
120 <sect2 role="commands">
121 <title>Command Explanations</title>
[1bbad3f]122<!--
[0d7900a]123 <para><command>autoconf</command>: This command is required to rebuild
[1bbad3f]124 <filename>configure</filename> using the fixed input file.</para>-->
[0d7900a]125
[482314a]126 <para><parameter>--without-sendmail</parameter>: By default,
[73b3b3b]127 <application>Fcron</application> will attempt to use the
128 <command>sendmail</command> command from an <xref linkend="server-mail"/>
129 package to email you the results of the <command>fcron</command> script.
130 This switch is used to disable default email notification. Omit the switch
131 to enable the default. Alternatively, you can use the
132 <option>--with-sendmail=<replaceable>&lt;/path/to/MTA
133 command&gt;</replaceable></option> to use a different mailer command.</para>
[30edc031]134
[ceda816]135 <para><parameter>--with-boot-install=no</parameter>: This prevents installation
136 of the bootscript included with the package.</para>
[30edc031]137
[1039de3]138 <para><option>--with-editor=<replaceable>&lt;/path/to/editor&gt;</replaceable></option>:
[448900a5]139 This switch allows you to set the default text editor.</para>
[1bbad3f]140<!--
141 <para><option>-with-dsssl-dir=<replaceable>&lt;/path/to/dsssl-stylesheets&gt;</replaceable></option>:
[8bb9f27d]142 May be used in order to avoid a warning message about not finding the
[1bbad3f]143 DSSSL stylesheets.</para>-->
[7afe2f1f]144
[30edc031]145 </sect2>
146
147 <sect2 role="configuration">
148 <title>Configuring Fcron</title>
149
150 <sect3 id="fcron-config">
151 <title>Config Files</title>
152
153 <para><filename>/etc/fcron.conf</filename>,
[539ace5]154 <filename>/etc/fcron.allow</filename>, and
[30edc031]155 <filename>/etc/fcron.deny</filename></para>
156
157 <indexterm zone="fcron fcron-config">
158 <primary sortas="e-etc-fcron.conf">/etc/fcron.conf</primary>
159 </indexterm>
160
161 <indexterm zone="fcron fcron-config">
162 <primary sortas="e-etc-fcron.allow">/etc/fcron.allow</primary>
163 </indexterm>
164
165 <indexterm zone="fcron fcron-config">
166 <primary sortas="e-etc-fcron.deny">/etc/fcron.deny</primary>
167 </indexterm>
168
169 </sect3>
170
171 <sect3>
172 <title>Configuration Information</title>
173
174 <para>There are no required changes in any of the config files.
175 Configuration information can be found in the man page for
176 <filename>fcron.conf</filename>.</para>
[bccbdaea]177
[539ace5]178 <para><command>fcron</command> scripts are written using
179 <command>fcrontab</command>. Refer to the <command>fcrontab</command> man
[30edc031]180 page for proper parameters to address your situation.</para>
181
[0619e6d]182 <para id="fcron-pam">If <application>Linux-PAM</application>
[539ace5]183 is installed, two PAM configuration files are installed in
184 <filename class='directory'>/etc/pam.d</filename>. Alternatively if
185 <filename class='directory'>/etc/pam.d</filename> is not used, the installation
[7712824]186 will append two configuration sections to the existing
[539ace5]187 <filename>/etc/pam.conf</filename> file. You should ensure the files match your
[30edc031]188 preferences. Modify them as required to suit your needs.</para>
189
190 <indexterm zone="fcron fcron-pam">
191 <primary sortas="e-etc-pam.d">/etc/pam.d/*</primary>
192 </indexterm>
193
194 <indexterm zone="fcron fcron-pam">
195 <primary sortas="e-etc-pam.conf">/etc/pam.conf</primary>
196 </indexterm>
197
198 </sect3>
199
[201fca3d]200 <sect3 id="fcron-init-systemd">
201 <title>Systemd Unit File</title>
202
203 <para>
204 This package will automatically install the systemd unit file if systemd is detected.
205 To enable it, issue as the <systemitem class="username">root</systemitem> user:
206 </para>
207
208 <indexterm zone="fcron fcron-init-systemd">
209 <primary sortas="f-fcron">fcron</primary>
210 </indexterm>
211
[c463c87]212<screen role="root"><userinput>systemctl enable fcron</userinput></screen>
[201fca3d]213
214 </sect3>
215
[30edc031]216 </sect2>
217
218 <sect2 role="content">
219 <title>Contents</title>
220
221 <segmentedlist>
222 <segtitle>Installed Programs</segtitle>
223 <segtitle>Installed Libraries</segtitle>
224 <segtitle>Installed Directories</segtitle>
225
226 <seglistitem>
227 <seg>fcron, fcrondyn, fcronsighup, and fcrontab</seg>
228 <seg>None</seg>
229 <seg>/usr/share/doc/fcron-&fcron-version; and /var/spool/fcron</seg>
230 </seglistitem>
231 </segmentedlist>
232
233 <variablelist>
234 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
235 <?dbfo list-presentation="list"?>
236 <?dbhtml list-presentation="table"?>
237
238 <varlistentry id="fcron-prog">
239 <term><command>fcron</command></term>
240 <listitem>
241 <para>is the scheduling daemon.</para>
242 <indexterm zone="fcron fcron-prog">
243 <primary sortas="b-fcron">fcron</primary>
244 </indexterm>
245 </listitem>
246 </varlistentry>
247
248 <varlistentry id="fcrondyn">
249 <term><command>fcrondyn</command></term>
250 <listitem>
[539ace5]251 <para>is a user tool intended to interact with a running
[30edc031]252 <command>fcron</command> daemon.</para>
253 <indexterm zone="fcron fcrondyn">
254 <primary sortas="b-fcrondyn">fcrondyn</primary>
255 </indexterm>
256 </listitem>
257 </varlistentry>
258
259 <varlistentry id="fcronsighup">
260 <term><command>fcronsighup</command></term>
261 <listitem>
[539ace5]262 <para>instructs <command>fcron</command> to reread the
[30edc031]263 <application>Fcron</application> tables.</para>
264 <indexterm zone="fcron fcronsighup">
265 <primary sortas="b-fcronsighup">fcronsighup</primary>
266 </indexterm>
267 </listitem>
268 </varlistentry>
269
270 <varlistentry id="fcrontab">
271 <term><command>fcrontab</command></term>
272 <listitem>
[539ace5]273 <para>is a program used to install, edit, list and remove the
[30edc031]274 tables used by <command>fcron</command>.</para>
275 <indexterm zone="fcron fcrontab">
276 <primary sortas="b-fcrontab">fcrontab</primary>
277 </indexterm>
278 </listitem>
279 </varlistentry>
280
281 </variablelist>
282
283 </sect2>
[f45b1953]284
285</sect1>
Note: See TracBrowser for help on using the repository browser.