CloudyScripts 1.8.37 → 1.8.38

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/Rakefile CHANGED
@@ -12,7 +12,7 @@ require 'rake/testtask'
12
12
 
13
13
  spec = Gem::Specification.new do |s|
14
14
  s.name = 'CloudyScripts'
15
- s.version = '1.8.37'
15
+ s.version = '1.8.38'
16
16
  s.has_rdoc = true
17
17
  s.extra_rdoc_files = ['README.rdoc', 'LICENSE']
18
18
  s.summary = 'Scripts to facilitate programming for infrastructure clouds.'
@@ -44,8 +44,21 @@ class SshConnection
44
44
  @@logger.error("No SSH authentication method found in parameters")
45
45
  raise "No authentication method found"
46
46
  end
47
-
48
- @ssh_session = Net::SSH.start(host, user, parameters)
47
+
48
+ connected = false
49
+ trials = 5
50
+ while !connected and trials > 0
51
+ begin
52
+ @ssh_session = Net::SSH.start(host, user, parameters)
53
+ connected = true
54
+ rescue Exception => e
55
+ @@logger.warn("connection attempt failed due to #{e.backtrace}")
56
+ end
57
+ trials -= 1
58
+ if !connected
59
+ sleep(20)
60
+ end
61
+ end
49
62
 
50
63
  if block then
51
64
  yield self
@@ -2,21 +2,31 @@
2
2
  # and open the template in the editor.
3
3
 
4
4
  # Ruby 1.8 does not contains sample() function
5
+ # NB:
6
+ # - ruby 1.8.6 has no equivalent method
7
+ # - ruby 1.8.7 has choice() method
8
+ # - ruby 1.9 has sample() method
5
9
  class Array
6
- def sample()
7
- return self.choice()
10
+ def sec_sample()
11
+ if self.respond_to?(:sample, true)
12
+ return self.sample()
13
+ elsif self.respond_to?(:choice, true)
14
+ return self.choice()
15
+ else
16
+ return (('A' .. 'Z').to_a + ('a' .. 'z').to_a + ('0' .. '9').to_a)[Kernel.srand.modulo(62)]
17
+ end
8
18
  end
9
19
  end
10
20
 
11
21
  class RandomString
12
22
  def initialize
13
-
14
23
  end
24
+
15
25
  def self.generate(length = 20, alphabet = ('A' .. 'Z').to_a + ('a' .. 'z').to_a + ('0' .. '9').to_a)
16
- return (0 .. length).map { alphabet.sample }.join
26
+ return (0 .. length).map { alphabet.sec_sample }.join
17
27
  end
18
28
 
19
29
  def self.generate_name(length = 20)
20
- return (('A' .. 'Z').to_a + ('a' .. 'z').to_a).sample + generate(length - 1)
30
+ return (('A' .. 'Z').to_a + ('a' .. 'z').to_a).sec_sample + generate(length - 1)
21
31
  end
22
32
  end
@@ -101,7 +101,9 @@ class AuditViaSsh < Ec2Script
101
101
  :connection_params => {:user => @context[:ssh_user],
102
102
  :keys => @context[:ssh_key_file],
103
103
  :host => @context[:public_dns_name],
104
- :paranoid => false},
104
+ :paranoid => false},
105
+ #:timeout => 120,
106
+ #:verbose => :warn},
105
107
  :logger => nil)
106
108
  audit.start(false)
107
109
  @context[:result][:audit_test] = []
@@ -117,10 +117,14 @@ class DownloadSnapshot < Ec2Script
117
117
  @context[:script].post_message("Going to prepare the two volumes for the zip-operation.")
118
118
  @context[:result][:os] =
119
119
  connect(@context[:dns_name], @context[:ssh_username], @context[:ssh_keyfile], @context[:ssh_keydata])
120
+ # source
120
121
  source_dir = "/mnt/tmp_#{@context[:source_volume_id]}"
121
- dest_dir = @context[:zip_file_dest]
122
- create_fs(@context[:dns_name], @context[:dest_device])
123
122
  mount_fs(source_dir, @context[:source_device])
123
+ @context[:fs_type], @context[:label] = get_partition_fs_type_and_label(source_dir)
124
+ # target
125
+ dest_dir = @context[:zip_file_dest]
126
+ #create_fs(@context[:dns_name], @context[:dest_device])
127
+ create_labeled_fs(@context[:dns_name], @context[:dest_device], @context[:fs_type], @context[:label])
124
128
  mount_fs(dest_dir, @context[:dest_device])
125
129
  FileSystemsReady.new(@context)
126
130
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: CloudyScripts
3
3
  version: !ruby/object:Gem::Version
4
- hash: 125
4
+ hash: 123
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 8
9
- - 37
10
- version: 1.8.37
9
+ - 38
10
+ version: 1.8.38
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matthias Jung
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-10 00:00:00 +00:00
18
+ date: 2011-08-19 00:00:00 +00:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency