Class: Indocker::Rsync

Inherits:
Object
  • Object
show all
Defined in:
lib/indocker/rsync.rb

Class Method Summary collapse

Class Method Details

.local_sync(from, to, create_path: nil, raise_on_error: false, exclude: nil) ⇒ Object



4
5
6
7
8
9
10
11
12
13
# File 'lib/indocker/rsync.rb', line 4

def self.local_sync(from, to, create_path: nil, raise_on_error: false, exclude: nil)
  @session ||= Indocker::SshSession.new(
    host: 'localhost',
    user: nil,
    port: nil,
    logger: Indocker.logger
  )

  sync(@session, from, to, create_path: create_path, raise_on_error: raise_on_error, exclude: exclude)
end

.sync(session, from, to, create_path: nil, raise_on_error: false, exclude: nil) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/indocker/rsync.rb', line 15

def self.sync(session, from, to, create_path: nil, raise_on_error: false, exclude: nil)
  if create_path
    session.exec!("mkdir -p #{create_path}")
  end

  if session.local?
    return if File.expand_path(to) == File.expand_path(from)

    Indocker::Shell.command("rm -rf #{to}", Indocker.logger, raise_on_error: raise_on_error)

    if Indocker::Shell.command_exist?("rsync")
      sync_local_rsync(from, to, raise_on_error: raise_on_error, exclude: exclude)
    else
      Indocker.logger.debug("WARNING: exclude option skipped due to fallback to CP command")
      sync_local_cp(from, to, raise_on_error: raise_on_error)
    end
  else
    command = "rsync --delete-after -a -e 'ssh -p #{session.port}' #{from} #{session.user}@#{session.host}:#{to}"
    Indocker.logger.debug("sync #{from} #{session.user}@#{session.host}:#{to}")
    Indocker::Shell.command(command, Indocker.logger, raise_on_error: raise_on_error)
  end
end