bootstrap-vz/bootstrapvz/common/tasks/bootstrap.py

77 lines
2.6 KiB
Python
Raw Normal View History

from bootstrapvz.base import Task
from .. import phases
from ..exceptions import TaskError
import host
2013-07-07 21:35:31 +02:00
import logging
import os.path
2013-07-07 21:35:31 +02:00
log = logging.getLogger(__name__)
2013-06-27 23:26:29 +02:00
class AddRequiredCommands(Task):
2014-04-08 22:04:29 +02:00
description = 'Adding commands required for bootstrapping Debian'
phase = phases.preparation
successors = [host.CheckExternalCommands]
@classmethod
def run(cls, info):
info.host_dependencies['debootstrap'] = 'debootstrap'
2013-06-27 23:26:29 +02:00
def get_bootstrap_args(info):
executable = ['debootstrap']
2013-06-27 23:26:29 +02:00
options = ['--arch=' + info.manifest.system['architecture']]
if len(info.include_packages) > 0:
options.append('--include=' + ','.join(info.include_packages))
if len(info.exclude_packages) > 0:
options.append('--exclude=' + ','.join(info.exclude_packages))
mirror = info.manifest.bootstrapper.get('mirror', info.apt_mirror)
arguments = [info.manifest.system['release'], info.root, mirror]
2013-06-27 23:26:29 +02:00
return executable, options, arguments
def get_tarball_filename(info):
from hashlib import sha1
executable, options, arguments = get_bootstrap_args(info)
# Filter info.root which points at /target/volume-id, we won't ever hit anything with that in there.
hash_args = [arg for arg in arguments if arg != info.root]
tarball_id = sha1(repr(frozenset(options + hash_args))).hexdigest()[0:8]
tarball_filename = 'debootstrap-' + tarball_id + '.tar'
return os.path.join(info.manifest.bootstrapper['workspace'], tarball_filename)
2013-06-27 23:26:29 +02:00
class MakeTarball(Task):
description = 'Creating bootstrap tarball'
phase = phases.os_installation
@classmethod
def run(cls, info):
2013-06-27 23:26:29 +02:00
executable, options, arguments = get_bootstrap_args(info)
info.tarball = get_tarball_filename(info)
2013-07-07 21:35:31 +02:00
if os.path.isfile(info.tarball):
log.debug('Found matching tarball, skipping creation')
2013-07-07 21:35:31 +02:00
else:
from ..tools import log_call
2013-07-07 21:59:50 +02:00
status, out, err = log_call(executable + options + ['--make-tarball=' + info.tarball] + arguments)
if status != 1:
msg = 'debootstrap exited with status {status}, it should exit with status 1'.format(status=status)
raise TaskError(msg)
2013-06-27 23:26:29 +02:00
class Bootstrap(Task):
description = 'Installing Debian'
phase = phases.os_installation
predecessors = [MakeTarball]
2013-06-27 23:26:29 +02:00
@classmethod
def run(cls, info):
2013-06-27 23:26:29 +02:00
executable, options, arguments = get_bootstrap_args(info)
info.tarball = get_tarball_filename(info)
if os.path.isfile(info.tarball):
if not info.manifest.bootstrapper.get('tarball', False):
# Only shows this message if it hasn't tried to create the tarball
log.debug('Found matching tarball, skipping download')
2013-06-27 23:26:29 +02:00
options.extend(['--unpack-tarball=' + info.tarball])
2013-06-27 23:29:41 +02:00
from ..tools import log_check_call
2013-07-07 21:35:31 +02:00
log_check_call(executable + options + arguments)