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!
瀏覽代碼

Minor adjustment

tags/0.92
父節點
當前提交
a2b0852f49
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. +4
    -1
      jail.py

+ 4
- 1
jail.py 查看文件

@@ -22,7 +22,10 @@ def jail_run(path, command):
try:
res = subprocess.run(command)
finally:
subprocess.run(['jail', '-r', get_jid(path)])
try:
subprocess.run(['jail', '-r', get_jid(path)])
except ValueError:
pass
subprocess.run(['umount', '-f', os.path.join(path, 'dev')])
if res.returncode != 0:
# subprocess.run(['umount', os.path.join(path, 'dev')])


Loading…
取消
儲存