Module Plan
Disk image build plans.
type create_copy_dir = {src : string;dst : string;
}type create_user = {groups : string list;password : string;username : string;
}type create_winvos = {add_wow64_packages : bool;append_to_path : string list;boot_execs : string list;copy_boot_files : bool;packages : string list;virtio_drivers : string list;
}type t = {arch : B0_std.Os.Arch.t option;basename : string;create : create;version : int;
}val of_ini : ?file:B0_std.Fpath.t -> string -> (t, string) Stdlib.resultval to_winvos_create_image_cmd :
data_dir:B0_std.Fpath.t ->
arch:B0_std.Os.Arch.t ->
with_shutdown:bool ->
t ->
(string, string) Stdlib.result