Sha256: 22f0cb059245d1185ff0bc92d4d551a63372abab2ba54c09d2d968dfd90d6685
Contents?: true
Size: 669 Bytes
Versions: 18
Compression:
Stored size: 669 Bytes
Contents
# frozen_string_literal: true require_relative '../../../bolt/error' require_relative '../../../bolt/config/transport/base' module Bolt class Config module Transport class Podman < Base OPTIONS = %w[ cleanup host interpreters shell-command tmpdir tty ].concat(RUN_AS_OPTIONS).sort.freeze DEFAULTS = { 'cleanup' => true }.freeze private def validate super if @config['interpreters'] @config['interpreters'] = normalize_interpreters(@config['interpreters']) end end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems