mofa 0.2.5 → 0.2.6

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.
@@ -47,7 +47,12 @@ class UploadCmd < MofaCmd
47
47
 
48
48
  # if the upload target is not a proper binrepo with a designated ".../import" folder -> create the "right" folder structure
49
49
  unless Mofa::Config.config['binrepo_import_dir'].match(/import$/)
50
- Net::SSH.start(Mofa::Config.config['binrepo_host'], Mofa::Config.config['binrepo_ssh_user'], :keys => [Mofa::Config.config['binrepo_ssh_keyfile']], :port => Mofa::Config.config['binrepo_ssh_port'], :verbose => :error, :forward_agent => false) do |ssh|
50
+ Net::SSH.start(Mofa::Config.config['binrepo_host'],
51
+ Mofa::Config.config['binrepo_ssh_user'],
52
+ :keys => [Mofa::Config.config['binrepo_ssh_keyfile']],
53
+ :port => Mofa::Config.config['binrepo_ssh_port'],
54
+ :verbose => :error,
55
+ :use_agent => false) do |ssh|
51
56
  puts "Remotely creating target dir \"#{import_dir}/#{cookbook.name}/#{cookbook.version}\""
52
57
  out = ssh_exec!(ssh, "[ -d #{import_dir}/#{cookbook.name}/#{cookbook.version} ] || mkdir -p #{import_dir}/#{cookbook.name}/#{cookbook.version}")
53
58
  fail "ERROR (#{out[0]}): #{out[2]}" if out[0] != 0
@@ -56,7 +61,12 @@ class UploadCmd < MofaCmd
56
61
  end
57
62
 
58
63
  begin
59
- Net::SFTP.start(Mofa::Config.config['binrepo_host'], Mofa::Config.config['binrepo_ssh_user'], :keys => [Mofa::Config.config['binrepo_ssh_keyfile']], :port => Mofa::Config.config['binrepo_ssh_port'], :verbose => :error, :forward_agent => false) do |sftp|
64
+ Net::SFTP.start(Mofa::Config.config['binrepo_host'],
65
+ Mofa::Config.config['binrepo_ssh_user'],
66
+ :keys => [Mofa::Config.config['binrepo_ssh_keyfile']],
67
+ :port => Mofa::Config.config['binrepo_ssh_port'],
68
+ :verbose => :error,
69
+ :use_agent => false) do |sftp|
60
70
  sftp.upload!("#{cookbook.pkg_dir}/#{cookbook.pkg_name}", "#{import_dir}/#{cookbook.pkg_name}")
61
71
  end
62
72
  puts "OK."
@@ -1,3 +1,3 @@
1
1
  module Mofa
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mofa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: