This repository has been archived by the owner on Sep 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed 'ip' command and variable to 'guestip'
- Loading branch information
Michael Kuzmin
committed
Jan 6, 2015
1 parent
0005f3e
commit c9153c0
Showing
4 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
# vagrant-guestip plugin | ||
This plugin allows obtaining an IP address of a guest machine. | ||
It's compatible with machines started remotely, i.e. by vSphere or AWS providers. | ||
|
||
## Installation | ||
|
||
$ vagrant plugin install vagrant-guestip | ||
|
||
## Usage | ||
$ vagrant guestip | ||
|
||
$ vagrant ip | ||
## Using with TeamCity | ||
Running the command under JetBrains [TeamCity](https://www.jetbrains.com/teamcity/) build, it creates `VAGRANT_GUESTIP` environment variable which can be referenced by following build scripts. | ||
**Note:** the variable is added by a [service message](https://confluence.jetbrains.com/display/TCD9/Build+Script+Interaction+with+TeamCity). It requires the command and a build script are placed into separate build steps. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Gem::Specification.new do |spec| | ||
spec.name = 'vagrant-guestip' | ||
spec.version = '0.1' | ||
spec.version = '0.2' | ||
spec.authors = ['Michael Kuzmin'] | ||
spec.email = ['[email protected]'] | ||
spec.summary = 'Vagrant plugin for obtaining IP address of guest machine' | ||
spec.summary = 'Vagrant plugin for obtaining IP address of a guest machine' | ||
spec.homepage = 'https://github.com/mkuzmin/vagrant-guestip' | ||
spec.license = 'MIT' | ||
|
||
|