1
0
Fork 0

Merge pull request #510 from liuzhilin12/master

fix-tuned-profiles-adoc-error
This commit is contained in:
Jaroslav Škarvada 2023-03-08 20:10:17 +01:00 committed by GitHub
commit 4725cdcb70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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)