From 48730cba3d7d14feba0d74f13884fc7298fbb1ee Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sat, 10 Aug 2013 16:16:53 +0200 Subject: [PATCH] Removed "fake" task module --- providers/raw/__init__.py | 1 - providers/raw/tasks/fake.py | 13 ------------- 2 files changed, 14 deletions(-) delete mode 100644 providers/raw/tasks/fake.py diff --git a/providers/raw/__init__.py b/providers/raw/__init__.py index 7d77d25..0c2814e 100644 --- a/providers/raw/__init__.py +++ b/providers/raw/__init__.py @@ -11,7 +11,6 @@ from tasks import security from tasks import network from tasks import initd from tasks import cleanup -from tasks import fake def initialize(): # Regardless of of loglevel, we don't want boto debug stuff, it's very noisy diff --git a/providers/raw/tasks/fake.py b/providers/raw/tasks/fake.py deleted file mode 100644 index 33648ac..0000000 --- a/providers/raw/tasks/fake.py +++ /dev/null @@ -1,13 +0,0 @@ -from base import Task -from common import phases -import os.path - -class Fake(Task): - description = 'create fake file' - phase = phases.system_modification - - def run(self, info): - fake_path = os.path.join(info.root, 'fake.txt') - with open(fake_path, 'a') as fakefile: - fakefile.write("fake file") -