diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2019-08-15 13:31:30 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2019-08-15 20:21:34 +0200 |
commit | a3e9ab661b2d670f7d0da53a5f56c52af0763c5b (patch) | |
tree | bf064b629923e5d9598ea42114521376b8e3385b /doc | |
parent | 89790c11799c4144e37a6a1f0dbe0f6fff89ea89 (diff) |
Add ?config-files and ?installed patterns
These two are mutually exclusive states of installed-ness. And
?installed package is fully unpacked and configured; a ?config-files
package only has config files left.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/apt-patterns.7.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/apt-patterns.7.xml b/doc/apt-patterns.7.xml index 6058d7a74..64dad4dd4 100644 --- a/doc/apt-patterns.7.xml +++ b/doc/apt-patterns.7.xml @@ -72,9 +72,15 @@ <varlistentry><term><code>?automatic</code></term> <listitem><para>Selects packages that were installed automatically.</para></listitem> </varlistentry> + <varlistentry><term><code>?config-files</code></term> + <listitem><para>Selects packages that are not fully installed, but have solely residual configuration files left.</para></listitem> + </varlistentry> <varlistentry><term><code>?garbage</code></term> <listitem><para>Selects packages that can be removed automatically.</para></listitem> </varlistentry> + <varlistentry><term><code>?installed</code></term> + <listitem><para>Selects packages that are currently installed.</para></listitem> + </varlistentry> <varlistentry><term><code>?name(REGEX)</code></term> <listitem><para>Selects packages where the name matches the given regular expression.</para></listitem> </varlistentry> @@ -93,6 +99,9 @@ <varlistentry><term><code>apt remove ?garbage</code></term> <listitem><para>Remove all packages that are automatically installed and no longer needed - same as apt autoremove</para></listitem> </varlistentry> + <varlistentry><term><code>apt purge ?config-files</code></term> + <listitem><para>Purge all packages that only have configuration files left</para></listitem> + </varlistentry> </variablelist> </refsect1> |