review cleanup

This commit is contained in:
Megan Marsh 2020-09-18 10:48:40 -07:00
parent 1d218d9e65
commit b7b43a41f3
2 changed files with 8 additions and 8 deletions

View File

@ -303,7 +303,7 @@ type Config struct {
// `{{ .HTTPIP }}`, `{{ .HTTPPort }}`, `{{ .HTTPDir }}`, // `{{ .HTTPIP }}`, `{{ .HTTPPort }}`, `{{ .HTTPDir }}`,
// `{{ .OutputDir }}`, `{{ .Name }}`, and `{{ .SSHHostPort }}` // `{{ .OutputDir }}`, `{{ .Name }}`, and `{{ .SSHHostPort }}`
QemuArgs [][]string `mapstructure:"qemuargs" required:"false"` QemuArgs [][]string `mapstructure:"qemuargs" required:"false"`
// A map of custom arguemnts to pass to qemu-img commands, where the key // A map of custom arguments to pass to qemu-img commands, where the key
// is the subcommand, and the values are lists of strings for each flag. // is the subcommand, and the values are lists of strings for each flag.
// Example: // Example:
// //
@ -322,15 +322,15 @@ type Config struct {
// The arguments will be constructed as follows: // The arguments will be constructed as follows:
// - Convert: // - Convert:
// Default is `qemu-img convert -O $format $sourcepath $targetpath`. Adding // Default is `qemu-img convert -O $format $sourcepath $targetpath`. Adding
// arguments ["-foo", "bar"] to qemu_img_args will change this to // arguments ["-foo", "bar"] to qemu_img_args.convert will change this to
// `qemu-img convert -foo bar -O $format $sourcepath $targetpath` // `qemu-img convert -foo bar -O $format $sourcepath $targetpath`
// - Create: // - Create:
// Default is `create -f $format $targetpath $size`. Adding arguments // Default is `create -f $format $targetpath $size`. Adding arguments
// ["-foo", "bar"] to qemu_img_args will change this to // ["-foo", "bar"] to qemu_img_args.create will change this to
// "create -f qcow2 -foo bar target.qcow2 1234M" // "create -f qcow2 -foo bar target.qcow2 1234M"
// - Resize: // - Resize:
// Default is `qemu-img resize -f $format $sourcepath $size`. Adding // Default is `qemu-img resize -f $format $sourcepath $size`. Adding
// arguments ["-foo", "bar"] to qemu_img_args will change this to // arguments ["-foo", "bar"] to qemu_img_args.resize will change this to
// `qemu-img resize -f $format -foo bar $sourcepath $size` // `qemu-img resize -f $format -foo bar $sourcepath $size`
QemuImgArgs QemuImgArgs `mapstructure:"qemu_img_args" required:"false"` QemuImgArgs QemuImgArgs `mapstructure:"qemu_img_args" required:"false"`
// The name of the Qemu binary to look for. This // The name of the Qemu binary to look for. This

View File

@ -231,7 +231,7 @@
`{{ .HTTPIP }}`, `{{ .HTTPPort }}`, `{{ .HTTPDir }}`, `{{ .HTTPIP }}`, `{{ .HTTPPort }}`, `{{ .HTTPDir }}`,
`{{ .OutputDir }}`, `{{ .Name }}`, and `{{ .SSHHostPort }}` `{{ .OutputDir }}`, `{{ .Name }}`, and `{{ .SSHHostPort }}`
- `qemu_img_args` (QemuImgArgs) - A map of custom arguemnts to pass to qemu-img commands, where the key - `qemu_img_args` (QemuImgArgs) - A map of custom arguments to pass to qemu-img commands, where the key
is the subcommand, and the values are lists of strings for each flag. is the subcommand, and the values are lists of strings for each flag.
Example: Example:
@ -250,15 +250,15 @@
The arguments will be constructed as follows: The arguments will be constructed as follows:
- Convert: - Convert:
Default is `qemu-img convert -O $format $sourcepath $targetpath`. Adding Default is `qemu-img convert -O $format $sourcepath $targetpath`. Adding
arguments ["-foo", "bar"] to qemu_img_args will change this to arguments ["-foo", "bar"] to qemu_img_args.convert will change this to
`qemu-img convert -foo bar -O $format $sourcepath $targetpath` `qemu-img convert -foo bar -O $format $sourcepath $targetpath`
- Create: - Create:
Default is `create -f $format $targetpath $size`. Adding arguments Default is `create -f $format $targetpath $size`. Adding arguments
["-foo", "bar"] to qemu_img_args will change this to ["-foo", "bar"] to qemu_img_args.create will change this to
"create -f qcow2 -foo bar target.qcow2 1234M" "create -f qcow2 -foo bar target.qcow2 1234M"
- Resize: - Resize:
Default is `qemu-img resize -f $format $sourcepath $size`. Adding Default is `qemu-img resize -f $format $sourcepath $size`. Adding
arguments ["-foo", "bar"] to qemu_img_args will change this to arguments ["-foo", "bar"] to qemu_img_args.resize will change this to
`qemu-img resize -f $format -foo bar $sourcepath $size` `qemu-img resize -f $format -foo bar $sourcepath $size`
- `qemu_binary` (string) - The name of the Qemu binary to look for. This - `qemu_binary` (string) - The name of the Qemu binary to look for. This