Exemplo n.º 1
0
	def __init__(self):
		Bootstrap.__init__(self)
		self._msfile = tempfile.NamedTemporaryFile()
		self._msfile.delete = False
		self._items=0
		self._done=0
	        progs.register("multistrap");
Exemplo n.º 2
0
	def __init__(self):
		Bootstrap.__init__(self)
		self._tot_packs = 1
		self._done_packs = 0
		progs.register("debootstrap")
Exemplo n.º 3
0
Arquivo: fs.py Projeto: ahedlund/raptz
	def __init__(self, host):
		Fs.__init__(self, host)
		progs.register("mount");
		progs.register("umount");
		atexit.register(umount_all, config.rootfs())
Exemplo n.º 4
0
	def __init__(self, host):
		self._host = host
		self._rcddst = config.rootfs("/usr/sbin/policy-rc.d")
		progs.register(QEMU_BIN)
		progs.register("chroot")
		self._qemudst = config.rootfs(progs.get(QEMU_BIN))
Exemplo n.º 5
0
	def __init__(self, host):
		progs.register("fakechroot")
		progs.register("fakeroot")
		ChRoot.__init__(self, host)