Sha256: c058f4253f17737906bd9c003eba6d516e0f89b9a0252278e4ee6cd4560c44eb
Contents?: true
Size: 633 Bytes
Versions: 10
Compression:
Stored size: 633 Bytes
Contents
# frozen_string_literal: true require 'bolt/error' require '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
10 entries across 10 versions & 1 rubygems