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!
Browse Source

Minor adjustment

tags/0.92
parent
commit
a2b0852f49
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      jail.py

+ 4
- 1
jail.py View File

@@ -22,7 +22,10 @@ def jail_run(path, command):
try: try:
res = subprocess.run(command) res = subprocess.run(command)
finally: 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')]) subprocess.run(['umount', '-f', os.path.join(path, 'dev')])
if res.returncode != 0: if res.returncode != 0:
# subprocess.run(['umount', os.path.join(path, 'dev')]) # subprocess.run(['umount', os.path.join(path, 'dev')])


Loading…
Cancel
Save