Sha256: 005d7b613986e8f5f6e83b60053edf378fb3e37679cb83f29e2cae76e0d0d8ba
Contents?: true
Size: 395 Bytes
Versions: 6
Compression:
Stored size: 395 Bytes
Contents
module Vagrant module SshFS class Plugin < Vagrant.plugin("2") name "vagrant-sshfs" description "A Vagrant plugin that mounts sshfs in the host machine." config "sshfs" do require "vagrant-sshfs/config" Config end action_hook(:sshfs, :machine_action_up) do |hook| hook.append(Vagrant::SshFS::Actions::Up) end end end end
Version data entries
6 entries across 6 versions & 1 rubygems