Sha256: eed7e14d620ef44af1817ea5582f021a39c99e365414db0c4c589846bb6effc7
Contents?: true
Size: 493 Bytes
Versions: 12
Compression:
Stored size: 493 Bytes
Contents
require "log4r" require 'json' require 'yaml' module VagrantPlugins module G5K module Action # This runs the configured instance. class CreateLocalWorkingDir def initialize(app, env) @app = app @logger = Log4r::Logger.new("vagrant_g5k::action::run_instance") end def call(env) conn = env[:g5k_connection] conn.create_local_working_dir() @app.call(env) end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems