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')])


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