guests/redhat: Use require_relative in redhat plugin
This commit is contained in:
parent
aaedc48425
commit
c12b413c2e
|
@ -7,7 +7,7 @@ module VagrantPlugins
|
||||||
description "Red Hat Enterprise Linux guest support."
|
description "Red Hat Enterprise Linux guest support."
|
||||||
|
|
||||||
guest("redhat", "linux") do
|
guest("redhat", "linux") do
|
||||||
require File.expand_path("../guest", __FILE__)
|
require_relative "guest"
|
||||||
Guest
|
Guest
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -36,19 +36,10 @@ module VagrantPlugins
|
||||||
Cap::NFSClient
|
Cap::NFSClient
|
||||||
end
|
end
|
||||||
|
|
||||||
guest_capability("redhat", "nfs_client_installed") do
|
|
||||||
require_relative "cap/nfs_client"
|
|
||||||
Cap::NFSClient
|
|
||||||
end
|
|
||||||
|
|
||||||
guest_capability("redhat", "rsync_install") do
|
guest_capability("redhat", "rsync_install") do
|
||||||
require_relative "cap/rsync"
|
require_relative "cap/rsync"
|
||||||
Cap::RSync
|
Cap::RSync
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.dnf?(machine)
|
|
||||||
machine.communicate.test("/usr/bin/which -s dnf")
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue