Sha256: 83296a78f2ce2368f53491559043ab56b6934fc8eb9ce06b33ea33470244d603
Contents?: true
Size: 344 Bytes
Versions: 23
Compression:
Stored size: 344 Bytes
Contents
# frozen_string_literal: true module VagrantPlugins module ProviderLibvirt module Action class MessageNotRunning def initialize(app, _env) @app = app end def call(env) env[:ui].info(I18n.t('vagrant_libvirt.not_running')) @app.call(env) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems