23 lines
518 B
Ruby
23 lines
518 B
Ruby
|
|
module VagrantPlugins
|
|
module Ansible
|
|
module Cap
|
|
module Guest
|
|
module SUSE
|
|
module AnsibleInstall
|
|
|
|
def self.ansible_install(machine, install_mode, ansible_version)
|
|
if install_mode != :default
|
|
raise Ansible::Errors::AnsiblePipInstallIsNotSupported
|
|
else
|
|
machine.communicate.sudo("zypper --non-interactive --quiet install ansible")
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|