Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vagrant-upload

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vagrant-upload

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Vagrant Upload Provisioner

This is a Vagrant 1.2+ plugin that adds an Upload provisioner to Vagrant, allowing you to provide files to your guest via rsync.

Can be handy when you need to transfer files before applying another provisioner. E.g.: When you need to transfer puppet certificates to your guest before appying puppet server provisionning.

NOTE: This plugin requires Vagrant 1.2+

Installation

$ vagrant plugin install vagrant-upload

Usage

Vagrant.configure("2") do |config|

  config.vm.box = "box"

  config.vm.provision :upload, files: [{
    host: '~/.bin/*',
    guest: '/home/username/.bin'
  }]

end

Configuration

This provisioner exposes one option:

  • files - An array of hashes which specifies which host files you want to transfer to the guest like shown in the Usage example.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 22 May 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc