15 lines
281 B
Ruby
15 lines
281 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module GuestOmniOS
|
|
module Cap
|
|
class RSync
|
|
def self.rsync_install(machine)
|
|
machine.communicate.sudo("pkg install rsync")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|