floatyhelper 0.7 → 0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/floatyhelper.rb +1 -1
- data/lib/floatyhelper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07d43c23e8cc5d7507aeea8022735d7d8446c820751403613a6edff026b929c4
|
4
|
+
data.tar.gz: 96025e91a3e472d9c047ebf24310cccb1cf6db5b786ceb73987297021b55169c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2817a116a25ffe2d230476244c6258e565384b69db9d68c9adc35259809bdd3064aae068aa4adacc74d7bcfe157f0d32c8958bc05863251a215d76fb2d665294
|
7
|
+
data.tar.gz: b3022014f3e911c8d6e0cdeee863ac8832b3a187fc8c3c85b9f9fc16ec07232dadfd4c98e9beaea08f9c6c895304387ba5f62988322d2601949e4e1b5784edcf
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Floatyhelper
|
2
2
|
|
3
|
-
A CLI app for manipulating groups of VMs provisioned with vmpooler.
|
3
|
+
A CLI app for manipulating groups of VMs provisioned with vmpooler. Works on top of https://github.com/briancain/vmfloaty
|
4
4
|
|
5
5
|
This was written to aid the installer and management team with testing various configurations of Puppet Enterprise. Groups of hosts can be added (either directly from a Beaker run from inside the pe_acceptance_tests folder it was run with, or manually with the --hosts flag) and given a "tag" to refer to the group of hosts by. These hosts can be snapshotted together, with these snapshots given a "snaptag" that can then be reverted to if needed.
|
6
6
|
|
data/lib/floatyhelper.rb
CHANGED
@@ -231,7 +231,7 @@ class Floatyhelper
|
|
231
231
|
if args.length < 2
|
232
232
|
puts "Please specify both a host/tag and a snaptag"
|
233
233
|
else
|
234
|
-
if VM.snaptag_exists(args[0], args[1])
|
234
|
+
if VM.snaptag_exists?(args[0], args[1])
|
235
235
|
print "Snaptag #{args[1]} already exists. Are you sure you want to overwrite? [y/N] ".yellow
|
236
236
|
gets response
|
237
237
|
return unless response.capitalize == 'Y'
|
data/lib/floatyhelper/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: floatyhelper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.8'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Burgan-Illig
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|