kytoon 1.2.3 → 1.2.4

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.
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ * Thu Oct 8 2012 Dan Prince <dprince@redhat.com> - 1.2.4
2
+ - XenServer: Delete VDI's that aren't in use during cleanup.
3
+
1
4
  * Thu Sep 20 2012 Dan Prince <dprince@redhat.com> - 1.2.3
2
5
  - XenServer: Use vm-clone once a vm has been imported to speed up
3
6
  group creation.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.3
1
+ 1.2.4
@@ -313,7 +313,14 @@ echo 1 > /proc/sys/net/ipv4/ip_forward
313
313
  xe vm-uninstall uuid=$UUID force=true
314
314
  fi
315
315
  done
316
-
316
+ for VDI_UUID in $(xe vdi-list read-only=false | grep -v sr-uuid | grep uuid | sed -e 's|.*: ||'); do
317
+ # destroy all vdi's which aren't in use
318
+ IN_USE=$(xe vbd-list vdi-uuid=$VDI_UUID | grep vdi-uuid | grep -c $VDI_UUID)
319
+ if [[ "$IN_USE" -eq "0" ]]; then
320
+ echo "removing VDI: $VDI_UUID"
321
+ xe vdi-destroy uuid=$VDI_UUID
322
+ fi
323
+ done
317
324
  }, gw_ip) do |ok, out|
318
325
  if not ok
319
326
  puts out
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kytoon
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-21 00:00:00.000000000 Z
12
+ date: 2012-10-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rdoc
@@ -289,7 +289,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
289
289
  version: '0'
290
290
  segments:
291
291
  - 0
292
- hash: 63162516198761670
292
+ hash: 1786306078727391994
293
293
  required_rubygems_version: !ruby/object:Gem::Requirement
294
294
  none: false
295
295
  requirements: