12 lines
212 B
Ruby
12 lines
212 B
Ruby
|
module VagrantPlugins
|
||
|
module GuestOmniOS
|
||
|
module Cap
|
||
|
class RSync
|
||
|
def self.rsync_install(machine)
|
||
|
machine.communicate.sudo("pkg install rsync")
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|