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


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