Module: Shexy

Defined in:
lib/shexy.rb

Overview

Execute commands in remote servers (SSH)

require 'shexy'

Shexy.user = 'test'
Shexy.password = 'test'
Shexy.host = 'test-host'
out, err = Shexy.exe 'ls -la'
out.empty? # no output
err.empty? # no error output

Shexy.exe 'la -la' do |out,err|
  puts out
  puts err
end

Another way, assuming you are using SSH keys and added them to the SSH agent (ssh-add ~/.ssh/my-priv-key):

Shexy.exe 'test@test-host', 'ls -la' do |out, err|
  puts out
end
Shexy.exe 'echo hello' # no need to add host/user again

Copying files (local -> remote):

Shexy.copy_to 'test@test-host', '/home/rubiojr/my-uber-file', '/tmp/'

Constant Summary collapse

VERSION =
'0.3.4'

Class Method Summary collapse

Class Method Details

.batch(&block) ⇒ Object



146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/shexy.rb', line 146

def self.batch(&block)
  require 'tempfile'
  out, err = nil,nil
  def self.script(script)
    f = Tempfile.new 'shexy'
    begin
      f.puts script 
      f.flush
      copy_to f.path, "#{f.path}.remote"
      out, err = exe "/bin/bash #{f.path}.remote" 
    ensure
      f.close
      f.unlink
    end
    return out, err
  end
  instance_eval &block
end

.copy_ssh_pubkey(path, dest_dir = '~/.ssh') ⇒ Object

Raises:

  • (ArgumentError)


236
237
238
239
240
241
242
243
244
245
246
# File 'lib/shexy.rb', line 236

def self.copy_ssh_pubkey(path, dest_dir = '~/.ssh')
  path = File.expand_path path
  raise ArgumentError.new("Invalid key file") unless File.exist?(path)
  key = File.read path
  batch do
    script <<-EOH
    mkdir -p #{dest_dir} && chmod 700 #{dest_dir}
    echo '#{key}' >> #{dest_dir}/authorized_keys
    EOH
  end
end

.copy_to(*args) ⇒ Object

Shexy.copy_to ‘[email protected]’, ‘source_file’, ‘dest_file’

or

Shexy.host = ‘foobar.com’ Shexy.user = ‘root’ Shexy.copy_to ‘source_file’, ‘dest_file’



174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
# File 'lib/shexy.rb', line 174

def self.copy_to(*args)
  opts = {}
  if args.include?(:recursive)
    opts = { :recursive => true }
    args.delete :recursive
  end
  
  if args.size > 2
    # First arg assumed to be [email protected]
    self.host = args[0]
    if self.host =~ /@/
      self.user, self.host = self.host.split '@'
    end
    from = args[1]
    to = args[2]
  else
    # user, host already set via Shexy.host and
    # Shexy.user
    from = args[0]
    to = args[1]
  end
  self.flags[:password] = self.password if self.password
  from = File.expand_path from
  Net::SCP.start(host, user, flags) do |scp|
    scp.upload! from, to, opts
  end
end

.distroObject

Detect distro version



205
206
207
# File 'lib/shexy.rb', line 205

def self.distro
  issue.match(/fedora|centos|frameos|debian|ubuntu|scientific linux/i)[0].gsub(" ", "_").downcase.to_sym
end

.distro_releaseObject

Detect distro release



212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/shexy.rb', line 212

def self.distro_release
  case distro 
  when :redhat,:centos,:frameos
    issue.split[2]
  when :fedora
    issue.split[2]
  when :ubuntu
    issue.split[1]
  when :debian
    issue.split[2]
  else
    '0'
  end
end

.exe(*args) ⇒ Object



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/shexy.rb', line 83

def self.exe(*args)
  args.flatten!
  if args.size > 1
    self.host = args[0]
    self.user, self.host = self.host.split '@' if self.host =~ /@/
    self.cmd = args[1]
  else
    self.cmd = args[0]
  end
  self.flags[:password] = self.password if self.password
  self.flags[:keys] = [self.key] if self.key
  Net::SSH.start(self.host, self.user, self.flags) do |sh|
    sh.open_channel do |ch| 
      #
      # Note, too, that when a pty is requested, user's shell configuration 
      # scripts (.bashrc and such) are not run by default, 
      # whereas they are run when a pty is not present.
      #
      # http://net-ssh.github.com/net-ssh/classes/Net/SSH/Connection/Channel.html#method-i-request_pty
      #
      # FIXME: may not be successful, warn about it
      ch.request_pty 
      if sudo?
        regexp = /(&&|\|\||&|\|)/
        if cmd =~ regexp
          new_cmd = cmd.split(regexp).map do |t| 
            t =~ /^(&&|\|\||&|\|)$/ ? t : "sudo #{t}"
          end
          self.cmd = new_cmd.join ''
        end
        self.cmd = "sudo #{cmd}"
        puts "SHEXY: #{cmd}" if $DEBUG
      end
      ch.exec cmd do
        # FIXME: I don't think it's a good idea
        # to implement access to stdout,stderr this way
        stdout = ""
        stderr = ""
        exit_code = -1
        exit_signal = -1
        ch.on_extended_data do |c2, type, data|
          # ERROR output here
          stderr << data
          yield nil, data if block_given?
        end
        ch.on_data do |c2, data|
          stdout << data
          yield data, nil if block_given?
        end
        ch.on_close do |c2|
          return stdout, stderr, exit_code, exit_signal
        end
        ch.on_request("exit-status") do |c2,data|
          exit_code = data.read_long
        end
        ch.on_request("exit-signal") do |c2, data|
          exit_signal = data.read_long
        end
      end
    end
  end
end

.flagsObject



46
# File 'lib/shexy.rb', line 46

def self.flags; Thread.current[:shexy_flags] ||= {} ; end

.flags=(f) ⇒ Object



45
# File 'lib/shexy.rb', line 45

def self.flags=(f);Thread.current[:shexy_flags] = f;end

.issueObject

Lame but short, and it works (most of the times)



230
231
232
233
234
# File 'lib/shexy.rb', line 230

def self.issue
  issue, err = ((exe 'cat /etc/issue')[0].strip.chomp || Shexy.exe('lsb_release -i')[0].strip.chomp).lines.first
  raise Exception.new "Error reading release info." unless (err.nil? or err.empty?)
  issue
end

.permit_root_login(value) ⇒ Object

Set PermitRootLogin to value in /etc/ssh/sshd_config value accepted: yes,now, without-password



252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'lib/shexy.rb', line 252

def self.(value)
  value = value.to_s
  unless value =~ /^(yes|no|without-password)$/
    raise ArgumentError.new "Argument should be yes|no|without-password"
  end

  using_sudo = Shexy.sudo?
  Shexy.use_sudo unless Shexy.user == 'root'
  out, err = batch do
    script <<-EOH
    sed -i 's/^#\\?PermitRootLogin.*$/PermitRootLogin\\ #{value}/' /etc/ssh/sshd_config
    test -f /etc/init.d/ssh && /etc/init.d/ssh restart
    test -f /etc/init.d/sshd && /etc/init.d/sshd restart
    EOH
  end
  Shexy.use_sudo(false) unless using_sudo
  return out, err
end

.script(script) ⇒ Object



149
150
151
152
153
154
155
156
157
158
159
160
161
# File 'lib/shexy.rb', line 149

def self.script(script)
  f = Tempfile.new 'shexy'
  begin
    f.puts script 
    f.flush
    copy_to f.path, "#{f.path}.remote"
    out, err = exe "/bin/bash #{f.path}.remote" 
  ensure
    f.close
    f.unlink
  end
  return out, err
end

.sudo?Boolean

Returns:

  • (Boolean)


47
# File 'lib/shexy.rb', line 47

def self.sudo?;Thread.current[:shexy_use_sudo]; end

.tcp_test_sshObject



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/shexy.rb', line 65

def self.tcp_test_ssh
  tcp_socket = TCPSocket.new(host, 22)
  readable = IO.select([tcp_socket], nil, nil, 5)
  if readable
    yield
    true
  else
    false
  end
rescue Errno::ETIMEDOUT, Errno::EPERM
  false
rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH, Errno::ENETUNREACH
  sleep 2
  false
ensure
  tcp_socket && tcp_socket.close
end

.use_sudo(v = true) ⇒ Object



48
# File 'lib/shexy.rb', line 48

def self.use_sudo(v = true); Thread.current[:shexy_use_sudo] = v; end

.wait_for_ssh(timeout = 60) ⇒ Object



50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/shexy.rb', line 50

def self.wait_for_ssh(timeout = 60)
  Timeout.timeout(timeout) do
    begin
      sleep(1) until tcp_test_ssh do
      end
    rescue Errno::ECONNRESET
      # safe to ignore, we need to retry all the time.
    end
  end
  true
rescue Exception => e
  $stderr.puts e.message
  false
end