github.com/marksheahan/packer@v0.10.2-0.20160613200515-1acb2d6645a0/builder/virtualbox/common/guest_addition_modes.go (about)

     1  package common
     2  
     3  // These are the different valid mode values for "guest_additions_mode" which
     4  // determine how guest additions are delivered to the guest.
     5  const (
     6  	GuestAdditionsModeDisable string = "disable"
     7  	GuestAdditionsModeAttach         = "attach"
     8  	GuestAdditionsModeUpload         = "upload"
     9  )