mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-10-07 17:40:30 +00:00
Removed "fake" task module
This commit is contained in:
parent
4913296480
commit
48730cba3d
2 changed files with 0 additions and 14 deletions
|
@ -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
|
||||
|
|
|
@ -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")
|
||||
|
Loading…
Add table
Reference in a new issue