diff --git a/lib/vagrant-sshfs/cap/guest/rocky/sshfs_client.rb b/lib/vagrant-sshfs/cap/guest/rocky/sshfs_client.rb index dfaea62..ca49377 100644 --- a/lib/vagrant-sshfs/cap/guest/rocky/sshfs_client.rb +++ b/lib/vagrant-sshfs/cap/guest/rocky/sshfs_client.rb @@ -3,14 +3,10 @@ module GuestRocky module Cap class SSHFSClient def self.sshfs_install(machine) - - case machine.guest.capability("flavor") - when :rocky_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") - end + # 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") end def self.sshfs_installed(machine)