Merge pull request #510 from liuzhilin12/master
fix-tuned-profiles-adoc-error
This commit is contained in:
commit
4725cdcb70
6 changed files with 6 additions and 6 deletions
|
|
@ -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.
|
||||
----
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
----
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
----
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
----
|
||||
|
||||
|
|
|
|||
|
|
@ -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.:")
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue