github.com/kaixiang/packer@v0.5.2-0.20140114230416-1f5786b0d7f1/command/fix/help.go (about) 1 package fix 2 3 const helpString = ` 4 Usage: packer fix [options] TEMPLATE 5 6 Reads the JSON template and attempts to fix known backwards 7 incompatibilities. The fixed template will be outputted to standard out. 8 9 If the template cannot be fixed due to an error, the command will exit 10 with a non-zero exit status. Error messages will appear on standard error. 11 12 Fixes that are run: 13 14 iso-md5 Replaces "iso_md5" in builders with newer "iso_checksum" 15 createtime Replaces ".CreateTime" in builder configs with "{{timestamp}}" 16 virtualbox-gaattach Updates VirtualBox builders using "guest_additions_attach" 17 to use "guest_additions_mode" 18 pp-vagrant-override Replaces old-style provider overrides for the Vagrant 19 post-processor to new-style as of Packer 0.5.0. 20 virtualbox-rename Updates "virtualbox" builders to "virtualbox-iso" 21 22 `