Removed "fake" task module

This commit is contained in:
Anders Ingemann 2013-08-10 16:16:53 +02:00
parent 4913296480
commit 48730cba3d
2 changed files with 0 additions and 14 deletions

View file

@ -11,7 +11,6 @@ from tasks import security
from tasks import network from tasks import network
from tasks import initd from tasks import initd
from tasks import cleanup from tasks import cleanup
from tasks import fake
def initialize(): def initialize():
# Regardless of of loglevel, we don't want boto debug stuff, it's very noisy # Regardless of of loglevel, we don't want boto debug stuff, it's very noisy

View file

@ -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")