From 8c6929fc8a1c89f57557adf174adb03cdea0f381 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 29 Oct 2012 13:43:03 +0100 Subject: [PATCH] tuned: fixed system profiles path --- tuned/application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuned/application.py b/tuned/application.py index 100e433..a218fa6 100644 --- a/tuned/application.py +++ b/tuned/application.py @@ -46,7 +46,7 @@ class Application(object): profile_factory = profiles.Factory() profile_merger = profiles.Merger() - profile_loader = profiles.Loader(["/var/lib/tuned", "/etc/tuned"], profile_factory, profile_merger) + profile_loader = profiles.Loader(["/usr/lib/tuned", "/etc/tuned"], profile_factory, profile_merger) self._daemon = daemon.Daemon(unit_manager, profile_loader, profile_name) self._controller = controller.Controller(self._daemon)