class VagrantPlugins::GuestAlma::Cap::SSHFSClient

Public Class Methods

sshfs_install(machine) click to toggle source
# File lib/vagrant-sshfs/cap/guest/alma/sshfs_client.rb, line 5
def self.sshfs_install(machine)

  case machine.guest.capability("flavor")
    when :alma_8
      # No need to install epel. fuse-sshfs comes from the powertools repo
      # https://bugzilla.redhat.com/show_bug.cgi?id=1758884
      # https://github.com/dustymabe/vagrant-sshfs/issues/123
      machine.communicate.sudo("yum -y install --enablerepo=powertools fuse-sshfs")
    when :alma_9, :alma # alma9 or unknown
      # Install fuse-sshfs from epel
      if !epel_installed(machine)
        epel_install(machine)
      end
      machine.communicate.sudo("yum -y install fuse-sshfs")
  end
end
sshfs_installed(machine) click to toggle source
# File lib/vagrant-sshfs/cap/guest/alma/sshfs_client.rb, line 22
def self.sshfs_installed(machine)
  machine.communicate.test("rpm -q fuse-sshfs")
end

Protected Class Methods

epel_install(machine) click to toggle source
# File lib/vagrant-sshfs/cap/guest/alma/sshfs_client.rb, line 32
def self.epel_install(machine)
  machine.communicate.sudo("yum -y install epel-release")
end
epel_installed(machine) click to toggle source
# File lib/vagrant-sshfs/cap/guest/alma/sshfs_client.rb, line 28
def self.epel_installed(machine)
  machine.communicate.test("rpm -q epel-release")
end