mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-14 08:13:06 -05:00
18 lines
401 B
Ruby
18 lines
401 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module GuestSUSE
|
|
module Cap
|
|
class RSync
|
|
def self.rsync_installed(machine)
|
|
machine.communicate.test("test -f /usr/bin/rsync")
|
|
end
|
|
|
|
def self.rsync_install(machine)
|
|
machine.communicate.sudo("zypper -n install rsync")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|