From 3009a7a28be177ec9a6cfbd7c4737114a228f661 Mon Sep 17 00:00:00 2001 From: Adam Hunt Date: Wed, 10 May 2017 04:26:02 -0700 Subject: [PATCH] Updated help outputs Added note about restarting tuned using 'systemclt' in addition to the existing reference to 'service'. --- tuned/admin/admin.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tuned/admin/admin.py b/tuned/admin/admin.py index b8b74be..040f5cd 100644 --- a/tuned/admin/admin.py +++ b/tuned/admin/admin.py @@ -236,9 +236,11 @@ class Admin(object): print("Verfication 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 Tuned restart, e.g.:") + print("You can mostly fix this by restarting the Tuned daemon, e.g.:") + print(" systemctl restart tuned") + print("or") print(" service tuned restart") - print("Sometimes (if some plugins like bootloader are used) also reboot is required.") + print("Sometimes (if some plugins like bootloader are used) a reboot may be required.") print("See tuned log file ('%s') for details." % consts.LOG_FILE) return self._controller.exit(ret)