From d31b5e6b8f1a10ad7bfe2bd6bdf23f21e650133e Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Tue, 28 Oct 2014 23:16:33 -0700 Subject: [PATCH] Add host manager --- lib/vmfloaty.rb | 1 + lib/vmfloaty/hosts.rb | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 lib/vmfloaty/hosts.rb diff --git a/lib/vmfloaty.rb b/lib/vmfloaty.rb index 1ed81cf..33434b3 100644 --- a/lib/vmfloaty.rb +++ b/lib/vmfloaty.rb @@ -1,5 +1,6 @@ require 'vmfloaty/cli' require 'vmfloaty/provision' +require 'vmfloaty/hosts' class Vmfloaty diff --git a/lib/vmfloaty/hosts.rb b/lib/vmfloaty/hosts.rb new file mode 100644 index 0000000..6e4f3f8 --- /dev/null +++ b/lib/vmfloaty/hosts.rb @@ -0,0 +1,5 @@ +# manage hosts used from vm pooler +class HOSTS + def initialize + end +end