File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 66module VagrantPlugins
77 module ProviderZone
88 # Run actions against the machine
9- module Action # rubocop:disable Metrics/ClassLength
9+ module Action # rubocop:disable Metrics/ModuleLength
1010 include Vagrant ::Action ::Builtin
1111 @logger = Log4r ::Logger . new ( 'vagrant_zones::action' )
1212
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33require 'log4r'
4+ require 'securerandom'
5+ require 'digest/md5'
46
57module VagrantPlugins
68 module ProviderZone
79 module Action
8- # This can be used with 'Call' built-in to check if the machine
9- # is created and branch in the middleware.
10+ # This is use to define the network
1011 class MessageNotCreated
1112 def initialize ( app , _env )
12- @app = app
1313 @logger = Log4r ::Logger . new ( 'vagrant_zones::action' )
14+ @app = app
1415 end
1516
1617 def call ( env )
You can’t perform that action at this time.
0 commit comments