
Change license to BSD-3-Clause Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
14 lines
230 B
Python
Executable File
14 lines
230 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
#
|
|
# Copyright(c) 2012-2021 Intel Corporation
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
import sys
|
|
import random
|
|
|
|
|
|
with open("config/random.cfg", "w") as f:
|
|
f.write(str(random.randint(0, sys.maxsize)))
|