Sha256: fa215953ff469a7249996c693fb2844a606009943113ba6a06904b0ec42050b2
Contents?: true
Size: 421 Bytes
Versions: 15
Compression:
Stored size: 421 Bytes
Contents
module VagrantPlugins module VCloud module Action class AnnounceSSHExec < Vagrant::Action::Builtin::SSHExec def initialize(app, env) @app = app end def call(env) ssh_info = env[:machine].ssh_info env[:ui].success( "External IP for #{env[:machine].name}: #{ssh_info[:host]}" ) super end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems