Sha256: 7330388ce67e9378edc0cd68214a9dd73ca1e9136cd670b032e1fd9e2a02b076
Contents?: true
Size: 468 Bytes
Versions: 13
Compression:
Stored size: 468 Bytes
Contents
# frozen_string_literal: true module VagrantPlugins module K3s module Cap module Redhat module CurlInstall include Linux::CurlInstalled def self.curl_install(machine) machine.communicate.sudo <<~EOF if command -v dnf; then dnf -y install curl else yum -y install curl fi EOF end end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems