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