README.md in salted-rails-0.0.6 vs README.md in salted-rails-0.0.7

- old
+ new

@@ -77,10 +77,14 @@ salted_config.private_key_path = '~/.ssh/id_rsa_project' if File.exist? '~/.ssh/id_rsa_project' # override default domain salted_config.domain = 'mydomain.com' + # load packages specified in a file (eg generated from your production system) + # use `dpkg --get-selections "*" > my_packages-datestamp` to generate the list + #salted_config.packages = 'config/my_packages-datestamp' + # Define a machine dev salted_config.define('dev') do |machine_config| end salted_config.define('qa') do |machine_config| @@ -99,9 +103,12 @@ # browse http://localhost:3333 machine_config.roles <<= 'curisecontrolrb' # gui also configures virtualbox for standard rather than headless mode machine_config.roles <<= 'gui' + + # Disable the syncing to /vagrant in digital_ocean (useful for development that is independent of local machine) + machine_config.sync_vagrant = false end salted_config.configure_vagrant(config) end end