IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
瀏覽代碼

Compose seems to work pretty much.

tags/0.92
父節點
當前提交
715893d6b2
共有 2 個檔案被更改,包括 38 行新增3 行删除
  1. +35
    -2
      focker/compose.py
  2. +3
    -1
      focker/jail.py

+ 35
- 2
focker/compose.py 查看文件

@@ -2,10 +2,17 @@ import os
import yaml
from .zfs import AmbiguousValueError, \
zfs_find, \
zfs_tag
zfs_tag, \
zfs_untag, \
zfs_mountpoint
from .jail import jail_fs_create, \
jail_create, \
jail_remove
from .misc import random_sha256_hexdigest, \
find_prefix
import subprocess
import jailconf
import os
def build_volumes(spec):
@@ -34,7 +41,33 @@ def build_images(spec, path):
def build_jails(spec):
print('build_jails(): NotImplementedError')
#if os.path.exists('/etc/jail.conf'):
# conf = jailconf.load('/etc/jail.conf')
#else:
# conf = jailconf.JailConf()
for (jailname, jailspec) in spec.items():
try:
name, _ = zfs_find(jailname, focker_type='jail')
jail_remove(zfs_mountpoint(name))
except AmbiguousValueError:
raise
except ValueError:
pass
name = jail_fs_create(jailspec['image'])
zfs_untag([ jailname ], focker_type='jail')
zfs_tag(name, [ jailname ])
path = zfs_mountpoint(name)
jail_create(path,
jailspec.get('exec.start', '/bin/sh /etc/rc'),
jailspec.get('env', {}),
[ [from_, on] \
for (from_, on) in jailspec.get('mounts', {}).items() ],
hostname=jailname,
overrides={
'exec.stop': jailspec.get('exec.stop', '/bin/sh /etc/rc.shutdown'),
'ip4.addr': jailspec.get('ip4.addr', '127.0.1.0'),
'interface': jailspec.get('interface', 'lo1')
})
def command_compose_build(args):


+ 3
- 1
focker/jail.py 查看文件

@@ -47,7 +47,7 @@ def quote(s):
return s
def jail_create(path, command, env, mounts, hostname=None):
def jail_create(path, command, env, mounts, hostname=None, overrides={}):
name = os.path.split(path)[-1]
if os.path.exists('/etc/jail.conf'):
conf = jailconf.load('/etc/jail.conf')
@@ -83,6 +83,8 @@ def jail_create(path, command, env, mounts, hostname=None):
blk['mount.devfs'] = True
blk['exec.clean'] = True
blk['host.hostname'] = hostname or name
for (k, v) in overrides.items():
blk[k] = quote(v)
conf.write('/etc/jail.conf')
return name


Loading…
取消
儲存