Sha256: 2b771c7d507794af6060f61e85c98ec9e325a34fb587274a52b4981dca079b48

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 KB

Contents

# frozen_string_literal: true

# takelage mutagen socket create
module MutagenSocketCreate
  # Backend method for mutagen socket create.
  def mutagen_socket_create(containersock, hostsock)
    socketname = @hostname[-11..-1]
    log.debug "Create the mutagen socket \"#{socketname}\" in the container" \
      "at \"#{containersock}\" pointing to the host at \"#{hostsock}\""

    socket_created = _mutagen_socket_create_socket(socketname, containersock, hostsock)

    unless socket_created.include? 'Created session'
      log.debug "Unable to create mutagen socket \"#{socketname}\""
      return false
    end

    log.debug "Created the mutagen socket \"#{socketname}\""
    true
  end

  private

  # Get git branch.
  # rubocop:disable Metrics/MethodLength
  def _mutagen_socket_create_socket(socketname, containersock, hostsock)
    cmd_create_socket = format(
      config.active['cmd_mutagen_forward_socket_create'],
      socketname: socketname,
      containersock: containersock,
      hostsock: hostsock,
      username: @username,
      container: @hostname,
      hostlabel: @hostlabel,
      takellabel: @takellabel
    )
    run cmd_create_socket
  end
  # rubocop:enable Metrics/MethodLength
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
takelage-0.28.7 lib/takelage/mutagen/socket/create.rb
takelage-0.28.5 lib/takelage/mutagen/socket/create.rb