class VagrantPlugins::GuestDebian::Cap::SSHFSClient
Public Class Methods
sshfs_install(machine)
click to toggle source
# File lib/vagrant-sshfs/cap/guest/debian/sshfs_client.rb, line 5 def self.sshfs_install(machine) machine.communicate.sudo("apt-get install -y sshfs") end
sshfs_installed(machine)
click to toggle source
# File lib/vagrant-sshfs/cap/guest/debian/sshfs_client.rb, line 9 def self.sshfs_installed(machine) machine.communicate.test("dpkg -l sshfs") end