Force rm of chef config files #2669

This commit is contained in:
Charles Blaxland 2013-12-17 17:35:46 +11:00
parent e97467e675
commit 7518bf94eb
2 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ module VagrantPlugins
remote_file = File.join(config.provisioning_path, filename)
@machine.communicate.tap do |comm|
comm.sudo("rm #{remote_file}", :error_check => false)
comm.sudo("rm -f #{remote_file}", :error_check => false)
comm.upload(temp.path, remote_file)
end
end
@ -100,7 +100,7 @@ module VagrantPlugins
remote_file = File.join(@config.provisioning_path, "dna.json")
@machine.communicate.tap do |comm|
comm.sudo("rm #{remote_file}", :error_check => false)
comm.sudo("rm -f #{remote_file}", :error_check => false)
comm.upload(temp.path, remote_file)
end
end

View File

@ -116,7 +116,7 @@ module VagrantPlugins
def upload_encrypted_data_bag_secret
@machine.env.ui.info I18n.t("vagrant.provisioners.chef.upload_encrypted_data_bag_secret_key")
@machine.communicate.tap do |comm|
comm.sudo("rm #{@config.encrypted_data_bag_secret}", :error_check => false)
comm.sudo("rm -f #{@config.encrypted_data_bag_secret}", :error_check => false)
comm.upload(encrypted_data_bag_secret_key_path,
@config.encrypted_data_bag_secret)
end