-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: Review and fix missing commands
Review documentation, including adding documentation for missing commands and addressing deployment issues.
- Loading branch information
1 parent
cfe15e1
commit f637adf
Showing
22 changed files
with
575 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
.. | ||
Copyright Contributors to the libdnf project. | ||
This file is part of libdnf: https://github.com/rpm-software-management/libdnf/ | ||
|
||
Libdnf is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 2 of the License, or | ||
(at your option) any later version. | ||
|
||
Libdnf is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with libdnf. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
.. _check-upgrade_command_ref-label: | ||
|
||
###################### | ||
Check-Upgrade Command | ||
###################### | ||
|
||
Synopsis | ||
======== | ||
|
||
``dnf5 check-upgrade [options] [<package-spec>...]`` | ||
|
||
|
||
Description | ||
=========== | ||
|
||
Non-interactively checks for available updates of specified packages. If no ``<package-spec>`` | ||
is provided, it checks for updates for the entire system. | ||
|
||
``DNF5`` will exit with code `100`` if updates are available and list them; `0` if no updates | ||
are available. | ||
|
||
|
||
Options | ||
======= | ||
|
||
``--changelogs`` | ||
| Print the package changelogs. | ||
``--advisories=ADVISORY_NAME,...`` | ||
| Consider only content contained in advisories with specified name. | ||
| This is a list option. | ||
| Expected values are advisory IDs, e.g. `FEDORA-2201-123`. | ||
``--advisory-severities=ADVISORY_SEVERITY,...`` | ||
| Consider only content contained in advisories with specified severity. | ||
| This is a list option. | ||
| Accepted values are: `critical`, `important`, `moderate`, `low`, `none`. | ||
``--bzs=BUGZILLA_ID,...`` | ||
| Consider only content contained in advisories that fix a ticket of given Bugzilla ID. | ||
| This is a list option. | ||
| Expected values are numeric IDs, e.g. `123123`. | ||
``--cves=CVE_ID,...`` | ||
| Consider only content contained in advisories that fix a ticket of given CVE (Common Vulnerabilities and Exposures) ID. | ||
| This is a list option. | ||
| Expected values are string IDs in CVE format, e.g. `CVE-2201-0123`. | ||
``--security`` | ||
| Consider only content contained in security advisories. | ||
``--bugfix`` | ||
| Consider only content contained in bugfix advisories. | ||
``--enhancement`` | ||
| Consider only content contained in enhancement advisories. | ||
``--newpackage`` | ||
| Consider only content contained in newpackage advisories. | ||
|
||
Examples | ||
======== | ||
|
||
``dnf5 check-upgrade`` | ||
| Print a list of packages that have updates available. | ||
``dnf5 check-upgrade --changelogs`` | ||
| Print changelogs for all packages with pending updates. | ||
|
||
See Also | ||
======== | ||
|
||
| :manpage:`dnf5-specs(7)`, :ref:`Patterns specification <specs_misc_ref-label>` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
.. | ||
Copyright Contributors to the libdnf project. | ||
This file is part of libdnf: https://github.com/rpm-software-management/libdnf/ | ||
|
||
Libdnf is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 2 of the License, or | ||
(at your option) any later version. | ||
|
||
Libdnf is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with libdnf. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
.. _info_command_ref-label: | ||
|
||
############# | ||
Info Command | ||
############# | ||
|
||
Synopsis | ||
======== | ||
|
||
``dnf5 info [options] [<package-spec>...]`` | ||
|
||
|
||
Description | ||
=========== | ||
|
||
Prints detailed information about packages based on the provided parameters. | ||
|
||
|
||
Options | ||
======= | ||
|
||
``--showduplicates`` | ||
| Show all versions of the packages, not only the latest one. | ||
``--installed`` | ||
| List only installed packages. | ||
``--available`` | ||
| List only available packages. | ||
``--extras`` | ||
| List only extras: packages installed on the system that are not available in any known repository. | ||
``--obsoletes`` | ||
| List only packages installed on the system that are obsoleted by packages in any known repository. | ||
``--recent`` | ||
| List only packages recently added to the repositories. | ||
``--upgrades`` | ||
| List only available upgrades for installed packages. | ||
``--autoremove`` | ||
| List only packages that will be removed by the :ref:`autoremove command <autoremove_command_ref-label>`. | ||
|
||
Examples | ||
======== | ||
|
||
``dnf5 info`` | ||
| Display detailed information about installed and available packages. | ||
``dnf5 info --recent gnome*`` | ||
| Print information about recent packages whose names start with ``gnome``. | ||
|
||
See Also | ||
======== | ||
|
||
| :manpage:`dnf5-specs(7)`, :ref:`Patterns specification <specs_misc_ref-label>` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
.. | ||
Copyright Contributors to the libdnf project. | ||
This file is part of libdnf: https://github.com/rpm-software-management/libdnf/ | ||
|
||
Libdnf is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 2 of the License, or | ||
(at your option) any later version. | ||
|
||
Libdnf is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with libdnf. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
.. _list_command_ref-label: | ||
|
||
############# | ||
List Command | ||
############# | ||
|
||
Synopsis | ||
======== | ||
|
||
``dnf5 list [options] [<package-spec>...]`` | ||
|
||
|
||
Description | ||
=========== | ||
|
||
Prints lists of packages based on the provided parameters. | ||
|
||
|
||
Options | ||
======= | ||
|
||
``--showduplicates`` | ||
| Show all versions of the packages, not only the latest one. | ||
``--installed`` | ||
| List only installed packages. | ||
``--available`` | ||
| List only available packages. | ||
``--extras`` | ||
| List only extras: packages installed on the system that are not available in any known repository. | ||
``--obsoletes`` | ||
| List only packages installed on the system that are obsoleted by packages in any known repository. | ||
``--recent`` | ||
| List only packages recently added to the repositories. | ||
``--upgrades`` | ||
| List only available upgrades for installed packages. | ||
``--autoremove`` | ||
| List only packages that will be removed by the :ref:`autoremove command <autoremove_command_ref-label>`. | ||
|
||
Examples | ||
======== | ||
|
||
``dnf5 list`` | ||
| List installed and available packages. | ||
``dnf5 list --available --showduplicates`` | ||
| List all available packages, including all available versions. | ||
``dnf5 list kernel*`` | ||
| List installed and available packages whose names start with ``kernel``. | ||
|
||
See Also | ||
======== | ||
|
||
| :manpage:`dnf5-specs(7)`, :ref:`Patterns specification <specs_misc_ref-label>` |
Oops, something went wrong.