mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00

New phase introduced "package installation" (fixes #114) Apt source lines are now parsed, this allows to verify the target release of added packages. All packages (except locales) are now installed *after* bootstrapping (fixes #123) Added env argument to log_(check_)call HostDependencies have been refactored a little
87 lines
2.7 KiB
Python
87 lines
2.7 KiB
Python
from base import Task
|
|
from common import phases
|
|
from common.tools import log_check_call
|
|
import locale
|
|
import os
|
|
|
|
|
|
class WriteSources(Task):
|
|
description = 'Writing aptitude sources to disk'
|
|
phase = phases.package_installation
|
|
|
|
def run(self, info):
|
|
for name, sources in info.source_lists.sources.iteritems():
|
|
if name == 'main':
|
|
list_path = os.path.join(info.root, 'etc/apt/sources.list')
|
|
else:
|
|
list_path = os.path.join(info.root, 'etc/apt/sources.list.d/', name + '.list')
|
|
with open(list_path, 'w') as source_list:
|
|
for source in sources:
|
|
source_list.write('{line}\n'.format(line=str(source)))
|
|
|
|
|
|
class DisableDaemonAutostart(Task):
|
|
description = 'Disabling daemon autostart'
|
|
phase = phases.package_installation
|
|
|
|
def run(self, info):
|
|
rc_policy_path = os.path.join(info.root, 'usr/sbin/policy-rc.d')
|
|
with open(rc_policy_path, 'w') as rc_policy:
|
|
rc_policy.write(('#!/bin/sh\n'
|
|
'exit 101'))
|
|
import stat
|
|
os.chmod(rc_policy_path,
|
|
stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR |
|
|
stat.S_IRGRP | stat.S_IXGRP |
|
|
stat.S_IROTH | stat.S_IXOTH)
|
|
|
|
|
|
class AptUpdate(Task):
|
|
description = 'Updating the package cache'
|
|
phase = phases.package_installation
|
|
predecessors = [locale.GenerateLocale, WriteSources]
|
|
|
|
def run(self, info):
|
|
log_check_call(['/usr/sbin/chroot', info.root, '/usr/bin/apt-get', 'update'])
|
|
|
|
|
|
class AptUpgrade(Task):
|
|
description = 'Upgrading packages and fixing broken dependencies'
|
|
phase = phases.package_installation
|
|
predecessors = [AptUpdate, DisableDaemonAutostart]
|
|
|
|
def run(self, info):
|
|
log_check_call(['/usr/sbin/chroot', info.root, '/usr/bin/apt-get',
|
|
'--fix-broken',
|
|
'--assume-yes',
|
|
'install'])
|
|
log_check_call(['/usr/sbin/chroot', info.root, '/usr/bin/apt-get', '--assume-yes', 'upgrade'])
|
|
|
|
|
|
class PurgeUnusedPackages(Task):
|
|
description = 'Removing unused packages'
|
|
phase = phases.system_cleaning
|
|
|
|
def run(self, info):
|
|
log_check_call(['/usr/sbin/chroot', info.root, '/usr/bin/apt-get', 'autoremove', '--purge'])
|
|
|
|
|
|
class AptClean(Task):
|
|
description = 'Clearing the aptitude cache'
|
|
phase = phases.system_cleaning
|
|
|
|
def run(self, info):
|
|
log_check_call(['/usr/sbin/chroot', info.root, '/usr/bin/apt-get', 'clean'])
|
|
|
|
lists = os.path.join(info.root, 'var/lib/apt/lists')
|
|
for list_file in [os.path.join(lists, f) for f in os.listdir(lists)]:
|
|
if os.path.isfile(list_file):
|
|
os.remove(list_file)
|
|
|
|
|
|
class EnableDaemonAutostart(Task):
|
|
description = 'Re-enabling daemon autostart after installation'
|
|
phase = phases.system_cleaning
|
|
|
|
def run(self, info):
|
|
os.remove(os.path.join(info.root, 'usr/sbin/policy-rc.d'))
|