1
0
Fork 0

tuned-adm: fix typo in the verification output

Also added the -i and --ignore-missing options to the tuned-adm manual page.

Related: rhbz#2075827

Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
This commit is contained in:
Jaroslav Škarvada 2022-04-27 01:30:33 +02:00
parent 467782fcea
commit 85a072313e
No known key found for this signature in database
GPG key ID: D8E1C00E076E840B
6 changed files with 11 additions and 9 deletions

View file

@ -65,7 +65,7 @@ Current active profile: [replaceable]_my-profile_
----
$ tuned-adm verify
Verfication succeeded, current system settings match the preset profile.
Verification succeeded, current system settings match the preset profile.
See TuneD log file ('/var/log/tuned/tuned.log') for details.
----

View file

@ -43,7 +43,7 @@ Current active profile: [replaceable]_balanced_
----
$ tuned-adm verify
Verfication succeeded, current system settings match the preset profile.
Verification succeeded, current system settings match the preset profile.
See TuneD log file ('/var/log/tuned/tuned.log') for details.
----

View file

@ -70,7 +70,7 @@ Current active profile: [replaceable]_my-profile_
----
$ tuned-adm verify
Verfication succeeded, current system settings match the preset profile.
Verification succeeded, current system settings match the preset profile.
See TuneD log file ('/var/log/tuned/tuned.log') for details.
----

View file

@ -71,7 +71,7 @@ Current active profile: [replaceable]_selected-profile_
----
$ tuned-adm verify
Verfication succeeded, current system settings match the preset profile.
Verification succeeded, current system settings match the preset profile.
See TuneD log file ('/var/log/tuned/tuned.log') for details.
----

View file

@ -23,8 +23,8 @@
.SH NAME
tuned\-adm - command line tool for switching between different tuning profiles
.SH SYNOPSIS
.B tuned\-adm
.RB [ list " | " active " | " "profile \fI[profile]\fP..." " | " "profile_info \fI[profile]\fP..." " | " off " | "auto_profile" | "profile_mode" | " verify " | " recommend ]
.B tuned\-adm
.RB [ list " | " active " | " "profile \fI[profile]\fP..." " | " "profile_info \fI[profile]\fP..." " | " off " | " auto_profile " | " profile_mode " | " "verify \fI[\-i | \-\-ignore\-missing]\fP" " | " recommend ]
.SH DESCRIPTION
This command line utility allows you to switch between user definable tuning
@ -76,11 +76,13 @@ performing any operation.
Show information/description of given profile or current profile if no profile is specified.
.TP
.B verify
.B "verify " \fI[\-i | \-\-ignore\-missing]\fP
Verifies current profile against system settings. Outputs information whether
system settings match current profile or not (e.g. somebody modified
a sysfs/sysctl value by hand). Detailed information about what is checked, what
value is set and what value is expected can be found in the log.
value is set and what value is expected can be found in the log. With the
\fI\-i\fP or \fI\-\-ignore\-missing\fP it does not treat missing tuning
(tuning unsupported by the platform) as error.
.TP
.B recommend

View file

@ -360,7 +360,7 @@ class Admin(object):
else:
ret = self._controller.verify_profile()
if ret:
print("Verfication succeeded, current system settings match the preset profile.")
print("Verification succeeded, current system settings match the preset profile.")
else:
print("Verification failed, current system settings differ from the preset profile.")
print("You can mostly fix this by restarting the TuneD daemon, e.g.:")