* ALT Linux platforms is an original rpm based distribution forked as Mandrake Russian Edition Spring at 2001 year * Distributions of ALT Linux use etcnet (https://www.altlinux.org/Etcnet) as internal network configuration system needs for configure_networks support
14 lines
277 B
Ruby
14 lines
277 B
Ruby
module VagrantPlugins
|
|
module GuestALT
|
|
module Cap
|
|
class RSync
|
|
def self.rsync_install(machine)
|
|
machine.communicate.sudo <<-EOH.gsub(/^ {12}/, '')
|
|
apt-get install -y -qq install rsync
|
|
EOH
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|