apt_preferences.5.xml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
  4. <!ENTITY % aptent SYSTEM "apt.ent">
  5. %aptent;
  6. ]>
  7. <refentry>
  8. <refentryinfo>
  9. &apt-author.team;
  10. &apt-email;
  11. &apt-product;
  12. <!-- The last update date -->
  13. <date>04 May 2009</date>
  14. </refentryinfo>
  15. <refmeta>
  16. <refentrytitle>apt_preferences</refentrytitle>
  17. <manvolnum>5</manvolnum>
  18. </refmeta>
  19. <!-- Man page title -->
  20. <refnamediv>
  21. <refname>apt_preferences</refname>
  22. <refpurpose>Preference control file for APT</refpurpose>
  23. </refnamediv>
  24. <refsect1>
  25. <title>Description</title>
  26. <para>The APT preferences file <filename>/etc/apt/preferences</filename>
  27. can be used to control which versions of packages will be selected
  28. for installation.</para>
  29. <para>Several versions of a package may be available for installation when
  30. the &sources-list; file contains references to more than one distribution
  31. (for example, <literal>stable</literal> and <literal>testing</literal>).
  32. APT assigns a priority to each version that is available.
  33. Subject to dependency constraints, <command>apt-get</command> selects the
  34. version with the highest priority for installation.
  35. The APT preferences file overrides the priorities that APT assigns to
  36. package versions by default, thus giving the user control over which
  37. one is selected for installation.</para>
  38. <para>Several instances of the same version of a package may be available when
  39. the &sources-list; file contains references to more than one source.
  40. In this case <command>apt-get</command> downloads the instance listed
  41. earliest in the &sources-list; file.
  42. The APT preferences file does not affect the choice of instance, only
  43. the choice of version.</para>
  44. <refsect2><title>APT's Default Priority Assignments</title>
  45. <para>If there is no preferences file or if there is no entry in the file
  46. that applies to a particular version then the priority assigned to that
  47. version is the priority of the distribution to which that version
  48. belongs. It is possible to single out a distribution, "the target release",
  49. which receives a higher priority than other distributions do by default.
  50. The target release can be set on the <command>apt-get</command> command
  51. line or in the APT configuration file <filename>/etc/apt/apt.conf</filename>.
  52. Note that this has precedence over any general priority you set in the
  53. <filename>/etc/apt/preferences</filename> file described later, but not
  54. over specifically pinned packages.
  55. For example,
  56. <programlisting>
  57. <command>apt-get install -t testing <replaceable>some-package</replaceable></command>
  58. </programlisting>
  59. <programlisting>
  60. APT::Default-Release "stable";
  61. </programlisting>
  62. </para>
  63. <para>If the target release has been specified then APT uses the following
  64. algorithm to set the priorities of the versions of a package. Assign:
  65. <variablelist>
  66. <varlistentry>
  67. <term>priority 100</term>
  68. <listitem><simpara>to the version that is already installed (if any).</simpara></listitem>
  69. </varlistentry>
  70. <varlistentry>
  71. <term>priority 500</term>
  72. <listitem><simpara>to the versions that are not installed and do not belong to the target release.</simpara></listitem>
  73. </varlistentry>
  74. <varlistentry>
  75. <term>priority 990</term>
  76. <listitem><simpara>to the versions that are not installed and belong to the target release.</simpara></listitem>
  77. </varlistentry>
  78. </variablelist>
  79. </para>
  80. <para>If the target release has not been specified then APT simply assigns
  81. priority 100 to all installed package versions and priority 500 to all
  82. uninstalled package versions.</para>
  83. <para>APT then applies the following rules, listed in order of precedence,
  84. to determine which version of a package to install.
  85. <itemizedlist>
  86. <listitem><simpara>Never downgrade unless the priority of an available
  87. version exceeds 1000. ("Downgrading" is installing a less recent version
  88. of a package in place of a more recent version. Note that none of APT's
  89. default priorities exceeds 1000; such high priorities can only be set in
  90. the preferences file. Note also that downgrading a package
  91. can be risky.)</simpara></listitem>
  92. <listitem><simpara>Install the highest priority version.</simpara></listitem>
  93. <listitem><simpara>If two or more versions have the same priority,
  94. install the most recent one (that is, the one with the higher version
  95. number).</simpara></listitem>
  96. <listitem><simpara>If two or more versions have the same priority and
  97. version number but either the packages differ in some of their metadata or the
  98. <literal>--reinstall</literal> option is given, install the uninstalled one.</simpara></listitem>
  99. </itemizedlist>
  100. </para>
  101. <para>In a typical situation, the installed version of a package (priority 100)
  102. is not as recent as one of the versions available from the sources listed in
  103. the &sources-list; file (priority 500 or 990). Then the package will be upgraded
  104. when <command>apt-get install <replaceable>some-package</replaceable></command>
  105. or <command>apt-get upgrade</command> is executed.
  106. </para>
  107. <para>More rarely, the installed version of a package is <emphasis>more</emphasis> recent
  108. than any of the other available versions. The package will not be downgraded
  109. when <command>apt-get install <replaceable>some-package</replaceable></command>
  110. or <command>apt-get upgrade</command> is executed.</para>
  111. <para>Sometimes the installed version of a package is more recent than the
  112. version belonging to the target release, but not as recent as a version
  113. belonging to some other distribution. Such a package will indeed be upgraded
  114. when <command>apt-get install <replaceable>some-package</replaceable></command>
  115. or <command>apt-get upgrade</command> is executed,
  116. because at least <emphasis>one</emphasis> of the available versions has a higher
  117. priority than the installed version.</para>
  118. </refsect2>
  119. <refsect2><title>The Effect of APT Preferences</title>
  120. <para>The APT preferences file allows the system administrator to control the
  121. assignment of priorities. The file consists of one or more multi-line records
  122. separated by blank lines. Records can have one of two forms, a specific form
  123. and a general form.
  124. <itemizedlist>
  125. <listitem>
  126. <simpara>The specific form assigns a priority (a "Pin-Priority") to one or more
  127. specified packages and specified version or version range. For example,
  128. the following record assigns a high priority to all versions of
  129. the <filename>perl</filename> package whose version number begins with "<literal>5.8</literal>".
  130. Multiple packages can be separated by spaces.</simpara>
  131. <programlisting>
  132. Package: perl
  133. Pin: version 5.8*
  134. Pin-Priority: 1001
  135. </programlisting>
  136. </listitem>
  137. <listitem><simpara>The general form assigns a priority to all of the package versions in a
  138. given distribution (that is, to all the versions of packages that are
  139. listed in a certain <filename>Release</filename> file) or to all of the package
  140. versions coming from a particular Internet site, as identified by the
  141. site's fully qualified domain name.</simpara>
  142. <simpara>This general-form entry in the APT preferences file applies only
  143. to groups of packages. For example, the following record assigns a high
  144. priority to all package versions available from the local site.</simpara>
  145. <programlisting>
  146. Package: *
  147. Pin: origin ""
  148. Pin-Priority: 999
  149. </programlisting>
  150. <simpara>A note of caution: the keyword used here is "<literal>origin</literal>".
  151. This should not be confused with the Origin of a distribution as
  152. specified in a <filename>Release</filename> file. What follows the "Origin:" tag
  153. in a <filename>Release</filename> file is not an Internet address
  154. but an author or vendor name, such as "Debian" or "Ximian".</simpara>
  155. <simpara>The following record assigns a low priority to all package versions
  156. belonging to any distribution whose Archive name is "<literal>unstable</literal>".</simpara>
  157. <programlisting>
  158. Package: *
  159. Pin: release a=unstable
  160. Pin-Priority: 50
  161. </programlisting>
  162. <simpara>The following record assigns a high priority to all package versions
  163. belonging to any distribution whose Codename is "<literal>squeeze</literal>".</simpara>
  164. <programlisting>
  165. Package: *
  166. Pin: release n=squeeze
  167. Pin-Priority: 900
  168. </programlisting>
  169. <simpara>The following record assigns a high priority to all package versions
  170. belonging to any release whose Archive name is "<literal>stable</literal>"
  171. and whose release Version number is "<literal>3.0</literal>".</simpara>
  172. <programlisting>
  173. Package: *
  174. Pin: release a=stable, v=3.0
  175. Pin-Priority: 500
  176. </programlisting>
  177. </listitem>
  178. </itemizedlist>
  179. </para>
  180. </refsect2>
  181. <refsect2>
  182. <title>How APT Interprets Priorities</title>
  183. <para>
  184. Priorities (P) assigned in the APT preferences file must be positive
  185. or negative integers. They are interpreted as follows (roughly speaking):
  186. <variablelist>
  187. <varlistentry>
  188. <term>P &gt; 1000</term>
  189. <listitem><simpara>causes a version to be installed even if this
  190. constitutes a downgrade of the package</simpara></listitem>
  191. </varlistentry>
  192. <varlistentry>
  193. <term>990 &lt; P &lt;=1000</term>
  194. <listitem><simpara>causes a version to be installed
  195. even if it does not come from the target release,
  196. unless the installed version is more recent</simpara></listitem>
  197. </varlistentry>
  198. <varlistentry>
  199. <term>500 &lt; P &lt;=990</term>
  200. <listitem><simpara>causes a version to be installed
  201. unless there is a version available belonging to the target release
  202. or the installed version is more recent</simpara></listitem>
  203. </varlistentry>
  204. <varlistentry>
  205. <term>100 &lt; P &lt;=500</term>
  206. <listitem><simpara>causes a version to be installed
  207. unless there is a version available belonging to some other
  208. distribution or the installed version is more recent</simpara></listitem>
  209. </varlistentry>
  210. <varlistentry>
  211. <term>0 &lt; P &lt;=100</term>
  212. <listitem><simpara>causes a version to be installed
  213. only if there is no installed version of the package</simpara></listitem>
  214. </varlistentry>
  215. <varlistentry>
  216. <term>P &lt; 0</term>
  217. <listitem><simpara>prevents the version from being installed</simpara></listitem>
  218. </varlistentry>
  219. </variablelist>
  220. </para>
  221. <para>If any specific-form records match an available package version then the
  222. first such record determines the priority of the package version.
  223. Failing that,
  224. if any general-form records match an available package version then the
  225. first such record determines the priority of the package version.</para>
  226. <para>For example, suppose the APT preferences file contains the three
  227. records presented earlier:</para>
  228. <programlisting>
  229. Package: perl
  230. Pin: version 5.8*
  231. Pin-Priority: 1001
  232. Package: *
  233. Pin: origin ""
  234. Pin-Priority: 999
  235. Package: *
  236. Pin: release unstable
  237. Pin-Priority: 50
  238. </programlisting>
  239. <para>Then:
  240. <itemizedlist>
  241. <listitem><simpara>The most recent available version of the <literal>perl</literal>
  242. package will be installed, so long as that version's version number begins
  243. with "<literal>5.8</literal>". If <emphasis>any</emphasis> 5.8* version of <literal>perl</literal> is
  244. available and the installed version is 5.9*, then <literal>perl</literal> will be
  245. downgraded.</simpara></listitem>
  246. <listitem><simpara>A version of any package other than <literal>perl</literal>
  247. that is available from the local system has priority over other versions,
  248. even versions belonging to the target release.
  249. </simpara></listitem>
  250. <listitem><simpara>A version of a package whose origin is not the local
  251. system but some other site listed in &sources-list; and which belongs to
  252. an <literal>unstable</literal> distribution is only installed if it is selected
  253. for installation and no version of the package is already installed.
  254. </simpara></listitem>
  255. </itemizedlist>
  256. </para>
  257. </refsect2>
  258. <refsect2>
  259. <title>Determination of Package Version and Distribution Properties</title>
  260. <para>The locations listed in the &sources-list; file should provide
  261. <filename>Packages</filename> and <filename>Release</filename> files
  262. to describe the packages available at that location. </para>
  263. <para>The <filename>Packages</filename> file is normally found in the directory
  264. <filename>.../dists/<replaceable>dist-name</replaceable>/<replaceable>component</replaceable>/<replaceable>arch</replaceable></filename>:
  265. for example, <filename>.../dists/stable/main/binary-i386/Packages</filename>.
  266. It consists of a series of multi-line records, one for each package available
  267. in that directory. Only two lines in each record are relevant for setting
  268. APT priorities:
  269. <variablelist>
  270. <varlistentry>
  271. <term>the <literal>Package:</literal> line</term>
  272. <listitem><simpara>gives the package name</simpara></listitem>
  273. </varlistentry>
  274. <varlistentry>
  275. <term>the <literal>Version:</literal> line</term>
  276. <listitem><simpara>gives the version number for the named package</simpara></listitem>
  277. </varlistentry>
  278. </variablelist>
  279. </para>
  280. <para>The <filename>Release</filename> file is normally found in the directory
  281. <filename>.../dists/<replaceable>dist-name</replaceable></filename>:
  282. for example, <filename>.../dists/stable/Release</filename>,
  283. or <filename>.../dists/woody/Release</filename>.
  284. It consists of a single multi-line record which applies to <emphasis>all</emphasis> of
  285. the packages in the directory tree below its parent. Unlike the
  286. <filename>Packages</filename> file, nearly all of the lines in a <filename>Release</filename>
  287. file are relevant for setting APT priorities:
  288. <variablelist>
  289. <varlistentry>
  290. <term>the <literal>Archive:</literal> or <literal>Suite:</literal> line</term>
  291. <listitem><simpara>names the archive to which all the packages
  292. in the directory tree belong. For example, the line
  293. "Archive: stable" or
  294. "Suite: stable"
  295. specifies that all of the packages in the directory
  296. tree below the parent of the <filename>Release</filename> file are in a
  297. <literal>stable</literal> archive. Specifying this value in the APT preferences file
  298. would require the line:
  299. </simpara>
  300. <programlisting>
  301. Pin: release a=stable
  302. </programlisting>
  303. </listitem>
  304. </varlistentry>
  305. <varlistentry>
  306. <term>the <literal>Codename:</literal> line</term>
  307. <listitem><simpara>names the codename to which all the packages
  308. in the directory tree belong. For example, the line
  309. "Codename: squeeze"
  310. specifies that all of the packages in the directory
  311. tree below the parent of the <filename>Release</filename> file belong to a version named
  312. <literal>squeeze</literal>. Specifying this value in the APT preferences file
  313. would require the line:
  314. </simpara>
  315. <programlisting>
  316. Pin: release n=squeeze
  317. </programlisting>
  318. </listitem>
  319. </varlistentry>
  320. <varlistentry>
  321. <term>the <literal>Version:</literal> line</term>
  322. <listitem><simpara>names the release version. For example, the
  323. packages in the tree might belong to Debian GNU/Linux release
  324. version 3.0. Note that there is normally no version number for the
  325. <literal>testing</literal> and <literal>unstable</literal> distributions because they
  326. have not been released yet. Specifying this in the APT preferences
  327. file would require one of the following lines.
  328. </simpara>
  329. <programlisting>
  330. Pin: release v=3.0
  331. Pin: release a=stable, v=3.0
  332. Pin: release 3.0
  333. </programlisting>
  334. </listitem>
  335. </varlistentry>
  336. <varlistentry>
  337. <term>the <literal>Component:</literal> line</term>
  338. <listitem><simpara>names the licensing component associated with the
  339. packages in the directory tree of the <filename>Release</filename> file.
  340. For example, the line "Component: main" specifies that
  341. all the packages in the directory tree are from the <literal>main</literal>
  342. component, which entails that they are licensed under terms listed
  343. in the Debian Free Software Guidelines. Specifying this component
  344. in the APT preferences file would require the line:
  345. </simpara>
  346. <programlisting>
  347. Pin: release c=main
  348. </programlisting>
  349. </listitem>
  350. </varlistentry>
  351. <varlistentry>
  352. <term>the <literal>Origin:</literal> line</term>
  353. <listitem><simpara>names the originator of the packages in the
  354. directory tree of the <filename>Release</filename> file. Most commonly, this is
  355. <literal>Debian</literal>. Specifying this origin in the APT preferences file
  356. would require the line:
  357. </simpara>
  358. <programlisting>
  359. Pin: release o=Debian
  360. </programlisting>
  361. </listitem>
  362. </varlistentry>
  363. <varlistentry>
  364. <term>the <literal>Label:</literal> line</term>
  365. <listitem><simpara>names the label of the packages in the directory tree
  366. of the <filename>Release</filename> file. Most commonly, this is
  367. <literal>Debian</literal>. Specifying this label in the APT preferences file
  368. would require the line:
  369. </simpara>
  370. <programlisting>
  371. Pin: release l=Debian
  372. </programlisting>
  373. </listitem>
  374. </varlistentry>
  375. </variablelist>
  376. </para>
  377. <para>All of the <filename>Packages</filename> and <filename>Release</filename>
  378. files retrieved from locations listed in the &sources-list; file are stored
  379. in the directory <filename>/var/lib/apt/lists</filename>, or in the file named
  380. by the variable <literal>Dir::State::Lists</literal> in the <filename>apt.conf</filename> file.
  381. For example, the file
  382. <filename>debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename>
  383. contains the <filename>Release</filename> file retrieved from the site
  384. <literal>debian.lcs.mit.edu</literal> for <literal>binary-i386</literal> architecture
  385. files from the <literal>contrib</literal> component of the <literal>unstable</literal>
  386. distribution.</para>
  387. </refsect2>
  388. <refsect2>
  389. <title>Optional Lines in an APT Preferences Record</title>
  390. <para>Each record in the APT preferences file can optionally begin with
  391. one or more lines beginning with the word <literal>Explanation:</literal>.
  392. This provides a place for comments.</para>
  393. <para>The <literal>Pin-Priority:</literal> line in each APT preferences record is
  394. optional. If omitted, APT assigns a priority of 1 less than the last value
  395. specified on a line beginning with <literal>Pin-Priority: release ...</literal>.</para>
  396. </refsect2>
  397. </refsect1>
  398. <refsect1>
  399. <title>Examples</title>
  400. <refsect2>
  401. <title>Tracking Stable</title>
  402. <para>The following APT preferences file will cause APT to assign a
  403. priority higher than the default (500) to all package versions belonging
  404. to a <literal>stable</literal> distribution and a prohibitively low priority to
  405. package versions belonging to other <literal>Debian</literal> distributions.
  406. <programlisting>
  407. Explanation: Uninstall or do not install any Debian-originated
  408. Explanation: package versions other than those in the stable distro
  409. Package: *
  410. Pin: release a=stable
  411. Pin-Priority: 900
  412. Package: *
  413. Pin: release o=Debian
  414. Pin-Priority: -10
  415. </programlisting>
  416. </para>
  417. <para>With a suitable &sources-list; file and the above preferences file,
  418. any of the following commands will cause APT to upgrade to the
  419. latest <literal>stable</literal> version(s).
  420. <programlisting>
  421. apt-get install <replaceable>package-name</replaceable>
  422. apt-get upgrade
  423. apt-get dist-upgrade
  424. </programlisting>
  425. </para>
  426. <para>The following command will cause APT to upgrade the specified
  427. package to the latest version from the <literal>testing</literal> distribution;
  428. the package will not be upgraded again unless this command is given
  429. again.
  430. <programlisting>
  431. apt-get install <replaceable>package</replaceable>/testing
  432. </programlisting>
  433. </para>
  434. </refsect2>
  435. <refsect2>
  436. <title>Tracking Testing or Unstable</title>
  437. <para>The following APT preferences file will cause APT to assign
  438. a high priority to package versions from the <literal>testing</literal>
  439. distribution, a lower priority to package versions from the
  440. <literal>unstable</literal> distribution, and a prohibitively low priority
  441. to package versions from other <literal>Debian</literal> distributions.
  442. <programlisting>
  443. Package: *
  444. Pin: release a=testing
  445. Pin-Priority: 900
  446. Package: *
  447. Pin: release a=unstable
  448. Pin-Priority: 800
  449. Package: *
  450. Pin: release o=Debian
  451. Pin-Priority: -10
  452. </programlisting>
  453. </para>
  454. <para>With a suitable &sources-list; file and the above preferences file,
  455. any of the following commands will cause APT to upgrade to the latest
  456. <literal>testing</literal> version(s).
  457. <programlisting>
  458. apt-get install <replaceable>package-name</replaceable>
  459. apt-get upgrade
  460. apt-get dist-upgrade
  461. </programlisting>
  462. </para>
  463. <para>The following command will cause APT to upgrade the specified
  464. package to the latest version from the <literal>unstable</literal> distribution.
  465. Thereafter, <command>apt-get upgrade</command> will upgrade
  466. the package to the most recent <literal>testing</literal> version if that is
  467. more recent than the installed version, otherwise, to the most recent
  468. <literal>unstable</literal> version if that is more recent than the installed
  469. version.
  470. <programlisting>
  471. apt-get install <replaceable>package</replaceable>/unstable
  472. </programlisting>
  473. </para>
  474. </refsect2>
  475. <refsect2>
  476. <title>Tracking the evolution of a codename release</title>
  477. <para>The following APT preferences file will cause APT to assign a
  478. priority higher than the default (500) to all package versions belonging
  479. to a specified codename of a distribution and a prohibitively low priority to
  480. package versions belonging to other <literal>Debian</literal> distributions,
  481. codenames and archives.
  482. Note that with this APT preference APT will follow the migration of a release
  483. from the archive <literal>testing</literal> to <literal>stable</literal> and
  484. later <literal>oldstable</literal>. If you want to follow for example the progress
  485. in <literal>testing</literal> notwithstanding the codename changes you should use
  486. the example configurations above.
  487. <programlisting>
  488. Explanation: Uninstall or do not install any Debian-originated package versions
  489. Explanation: other than those in the distribution codenamed with squeeze or sid
  490. Package: *
  491. Pin: release n=squeeze
  492. Pin-Priority: 900
  493. Explanation: Debian unstable is always codenamed with sid
  494. Package: *
  495. Pin: release a=sid
  496. Pin-Priority: 800
  497. Package: *
  498. Pin: release o=Debian
  499. Pin-Priority: -10
  500. </programlisting>
  501. </para>
  502. <para>With a suitable &sources-list; file and the above preferences file,
  503. any of the following commands will cause APT to upgrade to the
  504. latest version(s) in the release codenamed with <literal>squeeze</literal>.
  505. <programlisting>
  506. apt-get install <replaceable>package-name</replaceable>
  507. apt-get upgrade
  508. apt-get dist-upgrade
  509. </programlisting>
  510. </para>
  511. <para>The following command will cause APT to upgrade the specified
  512. package to the latest version from the <literal>sid</literal> distribution.
  513. Thereafter, <command>apt-get upgrade</command> will upgrade
  514. the package to the most recent <literal>squeeze</literal> version if that is
  515. more recent than the installed version, otherwise, to the most recent
  516. <literal>sid</literal> version if that is more recent than the installed
  517. version.
  518. <programlisting>
  519. apt-get install <replaceable>package</replaceable>/sid
  520. </programlisting>
  521. </para>
  522. </refsect2>
  523. </refsect1>
  524. <refsect1>
  525. <title>See Also</title>
  526. <para>&apt-get; &apt-cache; &apt-conf; &sources-list;
  527. </para>
  528. </refsect1>
  529. &manbugs;
  530. </refentry>