mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
Create unique identifier in BootstrapInformation
Can be used to uniquely name temporary resources
This commit is contained in:
parent
135ebfbb95
commit
59bae6e497
1 changed files with 3 additions and 1 deletions
|
@ -3,4 +3,6 @@
|
|||
class BootstrapInformation(object):
|
||||
def __init__(self, manifest=None, debug=False):
|
||||
self.manifest = manifest
|
||||
self.debug = debug
|
||||
self.debug = debug
|
||||
import random
|
||||
self.run_id = random.randrange(16**8)
|
||||
|
|
Loading…
Add table
Reference in a new issue