Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

[WIP - Don't close] Travis workaround #3

Open
wants to merge 58 commits into
base: master
Choose a base branch
from

Conversation

maxlinc
Copy link

@maxlinc maxlinc commented Dec 18, 2014

Ha - I'm smart. Since the Travis hook isn't enabled for mitchellh/vagrant-rackspace, we can setup a PR from that fork to this one.

This PR will keep building every time something is merged to mitchellh:master. So we won't have builds for PRs, but we'll at least have travis running after the PR is merged.

berendt and others added 30 commits April 16, 2014 12:43
Example output of this subcommand (one keypair with the name vagrant
is available on Rackspace Servers):

```
$ vagrant rackspace keypairs
==> default: KeyPair Name
==> default: vagrant
```
Example output of this subcommand:

```
$ vagrant rackspace networks
==> default: Network Name                         Network CIDR
==> default: private
==> default: public
==> default: vagrant001                           192.168.3.0/24
==> default: vagrant002                           192.168.4.0/24
==> default: vagrant003                           192.168.5.0/24
```
Example output of this subcommand:

```
$ vagrant rackspace servers
==> devstack: Server Name          State                IPv4 address
==> devstack: devstack             ACTIVE               166.78.18.8
```
Also added new commands introduced by #90, #91 and #92.
```
==> devstack: Network Name                         Network CIDR             Network ID
==> devstack: private                                                       11111111-1111-1111-1111-111111111111
==> devstack: public                                                        00000000-0000-0000-0000-000000000000
==> devstack: vagrant001                           192.168.3.0/24           c7da5d07-ac80-49ca-8575-8822c71bc758
==> devstack: vagrant002                           192.168.4.0/24           f45ba323-dd21-4999-a5d7-c98a3edfb7a3
==> devstack: vagrant003                           192.168.5.0/24           e49a86df-6c98-42d1-a66b-11c80e1252e1
```
This pull request implements a fix for
#114
Confirm Rackspace server destruction.
Confirm Rackspace server destruction.
Fix uninitialized constant error.
added subcommand keypairs to list SSH key pairs
…-rackspace into berendt-subcommand_list_networks
Conflicts:
	lib/vagrant-rackspace/action.rb
	lib/vagrant-rackspace/command/root.rb
…rackspace into berendt-subcommand_list_servers

Conflicts:
	lib/vagrant-rackspace/action.rb
	lib/vagrant-rackspace/command/root.rb
rewrote the custom commands section
Support for pre-configuring communicator transports (SSH or WinRM) via init_script setting
Set box_optional and parallel attributes
module Rackspace
module Action
class ListKeyPairs
def initialize(app, env)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unused method argument - env. If it's necessary, use _ or _env as an argument name to indicate that it won't be used.

zacharydanger and others added 7 commits March 5, 2015 09:45
This key is required to do just about anything with the Rackspace API. :D
Add `rackspace_region` configuration to sample config
Some of us are less proficient in ruby, and it took me a while
to figure out how to read my environment variable from the vagrant
file. I'm a bit wiser for this, and hopefuly it will save someone
a bit of time.

Hopefuly, also, it will prevent a couple of publicly spilled
api keys...

Changes to be committed:
        modified:   README.md
Also, added missing quotes on previous environment example.
gotta get in this ruby thing.. =)

Changes to be committed:
        modified:   README.md
Clarified README.md about setting up and sourcing env variables for best practice of keeping api keys private
@@ -39,7 +40,8 @@
:server_name,
:disk_config,
:username,
:admin_password].each do |attribute|
:admin_password,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Align the elements of an array literal if they span more than one line.

end

argv = parse_options(opts)
return if !argv

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Favor unless over if for negative conditions.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
8 participants