lp://staging/~smoser/curtin/simplestreams
- Get this branch:
- bzr branch lp://staging/~smoser/curtin/simplestreams
Branch merges
- Diogo Matsubara: Approve
-
Diff: 170 lines (+49/-17)3 files modifiedMakefile (+3/-1)
tests/vmtests/__init__.py (+41/-16)
tools/vmtest-system-setup (+5/-0)
Branch information
Recent revisions
- 295. By Scott Moser
-
sync-images: allow reading stream source from mirror. use progress.
This allows me to use a local mirror:
export IMAGE_SRC_URL=some. mirror/
IMAGE_SRC_URL=http://my.mirror. example. com/maas make sync-images Also gets '--progress' if sstream-mirror supports it.
- 293. By Scott Moser
-
vmtest-
system- setup: declare dependency on qemu-system-arch dont know how we missed this before, but we need qemu.
- 292. By Scott Moser
-
add and use helper for getting boolean value from environment variable
We were doing this:
if (os.getenv('CURTIN_ VMTEST_ KEEP_DATA' , "false") != "true"): But that meant that these seemingly false values would be read as true:
"", "FALSE", "0".Put that check in one place. Now, we instead do:
get_env_var_ bool('CURTIN_ VMTEST_ KEEP_DATA' , False): Which considers any of the values listed above as false, and all others
to be true. If variable is not present at all, then default is False. - 290. By Scott Moser
-
respect environment or make variable CURTIN_
VMTEST_ IMAGE_SYNC This way we allow the user to set this through either:
export CURTIN_VMTEST_ IMAGE_SYNC= True
make vmtest
or
make CURTIN_VMTEST_ IMAGE_SYNC= True
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)
- Stacked on:
- lp://staging/~curtin-dev/curtin/trunk