Skip to content

Commit

Permalink
Modify cloudinit to use 'mkisofs' instead of 'genisoimage'.
Browse files Browse the repository at this point in the history
genisoimage was debian's fork of mkisofs so the two are compatible, but
mkisofs is available on more OS' (e.g. macOS via brew).
  • Loading branch information
night199uk authored and flavio committed Jan 14, 2018
1 parent 767a7a5 commit c1ed2ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libvirt/cloudinit_def.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func (ci *defCloudInit) createISO() (string, error) {

isoDestination := filepath.Join(tmpDir, ci.Name)
cmd := exec.Command(
"genisoimage",
"mkisofs",
"-output",
isoDestination,
"-volid",
Expand Down

0 comments on commit c1ed2ab

Please sign in to comment.