Skip to content

Instantly share code, notes, and snippets.

@legal90
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save legal90/10277252 to your computer and use it in GitHub Desktop.
Save legal90/10277252 to your computer and use it in GitHub Desktop.
Vagrant Parallels: Customize Smart Guard
# This is a part of Vagrantfile
# Use SmartGuard to making regular backups
#
# More details
# KB: http://kb.parallels.com/en/8827
# Documentation: http://parallels.github.io/vagrant-parallels/docs/configuration.html
#
# --sg-interval is set in seconds!
config.vm.provider "parallels" do |v|
v.customize ["set", :id,
"--smart-guard", "on",
"--sg-notify-before-create", "on",
"--sg-interval", "10800",
"--sg-max-snapshots", "2"
]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment