1
0
Fork 0

fix-tuned-profiles-adoc-error

This commit is contained in:
liuzhilin 2023-02-20 17:20:21 +08:00
parent ce3d092628
commit d31e05bde8
6 changed files with 6 additions and 6 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

@ -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.:")

View file

@ -339,7 +339,7 @@ class Daemon(object):
log.error("profile is not applied")
return False
# using deamon, the main loop mustn't exit before our completion
# using daemon, the main loop mustn't exit before our completion
self._not_used.clear()
log.info("verifying profile(s): %s" % self._profile.name)
ret = self._unit_manager.verify_tuning(ignore_missing)