This commit is contained in:
Artur Gurgul 2025-08-26 08:52:28 +02:00
parent c8b057e6a2
commit 54d4dfcb33
3 changed files with 68 additions and 8 deletions

8
bin/vm
View file

@ -23,6 +23,14 @@ OptionParser.new do |opt|
options.name = name
end
opt.on('--cdrom CDROM', 'Use local cdrom image') do |cdrom|
options.cdrom = cdrom
end
opt.on('--tpm', 'Use tpm') do
options.tpm = true
end
opt.on('--detached') do
options.detached = true
end