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

randint fix

tags/0.92
父節點
當前提交
92462c05c9
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      jail.py

+ 1
- 1
jail.py 查看文件

@@ -20,7 +20,7 @@ def command_jail_run(args):
base, _ = zfs_snapshot_by_tag_or_sha256(args.image)
# root = '/'.join(base.split('/')[:-1])
for _ in range(10**6):
name = bytes([ random.randint(0, 256) for _ in range(4) ]).hex()[:7]
name = bytes([ random.randint(0, 255) for _ in range(4) ]).hex()[:7]
name = base.split('/')[0] + '/focker/jails/' + name
if not zfs_exists(name):
break


Loading…
取消
儲存