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!
소스 검색

Improved jail cleanup

tags/0.92
부모
커밋
624a6179da
1개의 변경된 파일14개의 추가작업 그리고 1개의 파일을 삭제
  1. +14
    -1
      jail.py

+ 14
- 1
jail.py 파일 보기

@@ -2,14 +2,27 @@ import subprocess
from .zfs import *
import random
import shutil
import json
def get_jid(path):
data = json.loads(subprocess.check_output(['jls', '--libxo=json']))
lst = data['jail-information']['jail']
lst = list(filter(lambda a: a['path'] == path, lst))
if len(lst) == 0:
raise ValueError('JID not found for path: ' + path)
if len(lst) > 1:
raise ValueError('Ambiguous JID for path: ' + path)
return str(lst[0]['jid'])
def jail_run(path, command):
command = ['jail', '-c', 'host.hostname=' + os.path.split(path)[1], 'mount.devfs=1', 'interface=lo1', 'ip4.addr=127.0.1.0', 'path=' + path, 'command', '/bin/sh', '-c', command]
command = ['jail', '-c', 'host.hostname=' + os.path.split(path)[1], 'persist=1', 'mount.devfs=1', 'interface=lo1', 'ip4.addr=127.0.1.0', 'path=' + path, 'command', '/bin/sh', '-c', command]
print('Running:', ' '.join(command))
try:
res = subprocess.run(command)
finally:
subprocess.run(['jail', '-r', get_jid(path)])
subprocess.run(['umount', '-f', os.path.join(path, 'dev')])
if res.returncode != 0:
# subprocess.run(['umount', os.path.join(path, 'dev')])


불러오는 중...
취소
저장