From 7262ad997b6cbd43f17c5283b795a19d96f481a6 Mon Sep 17 00:00:00 2001 From: Olivier Sallou Date: Mon, 12 Aug 2013 16:06:34 +0200 Subject: [PATCH] fix package name --- plugins/root_password/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/root_password/__init__.py b/plugins/root_password/__init__.py index f9590f5..f3d4e87 100644 --- a/plugins/root_password/__init__.py +++ b/plugins/root_password/__init__.py @@ -1,7 +1,7 @@ def tasks(tasklist, manifest): - from common.tasks import DisableSSHPasswordAuthentication + from common.tasks.security import DisableSSHPasswordAuthentication from tasks import SetRootPassword tasklist.replace(DisableSSHPasswordAuthentication, SetRootPassword())