Treat outputs like we treat trees: store them in the object store. This simplifies using osbuild and allows returning a cached version if one is available. This makes the `--output` parameter redundant. Remove it.
10 lines
251 B
Python
10 lines
251 B
Python
import tempfile
|
|
import os
|
|
|
|
|
|
EXPECTED_TIME_TO_BOOT = 60 # seconds
|
|
RESET = "\033[0m"
|
|
BOLD = "\033[1m"
|
|
RED = "\033[31m"
|
|
OBJECTS = os.environ.get("OBJECTS", ".osbuild-test")
|
|
OSBUILD = os.environ.get("OSBUILD", "python3 -m osbuild --libdir .").split(' ')
|