Skip to content

Commit

Permalink
Add skeleton for deboostrap step.
Browse files Browse the repository at this point in the history
Cannot be implemented atm. Missing: system analyzer, bs retries.
  • Loading branch information
alenz33 committed Mar 31, 2015
1 parent 410cb6c commit 06accfd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions conduct/buildsteps.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,22 @@ def cleanup(self):
shutil.rmtree(entry)


class Debootstrap(BuildStep):
'''
This build step bootstraps a basic debian system to the given directory.
'''

parameters = {
'distribution' : Parameter(type=listof(str),
description='Desired distribution'),
'arch' : Parameter(type=listof(str),
description='Desired architecture'),
}

def run(self):
raise NotImplementedError('TODO')





Expand Down

0 comments on commit 06accfd

Please sign in to comment.