Last active
August 29, 2015 13:58
-
-
Save legal90/10277252 to your computer and use it in GitHub Desktop.
Vagrant Parallels: Customize Smart Guard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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