Sha256: 93a0b711829331bb0b8b145eb41aa8afa6ea24fcafcfd488686d20d246fc8e24
Contents?: true
Size: 699 Bytes
Versions: 20
Compression:
Stored size: 699 Bytes
Contents
# frozen_string_literal: true # takelage mutagen socket tidy module MutagenSocketTidy # Backend method for mutagen socket tidy. def mutagen_socket_tidy log.debug "Remove the mutagen daemon files in container \"#{@hostname}\"" container_existing = docker_container_check_existing @hostname cmd_remove = config.active['cmd_mutagen_forward_socket_remove'] return false unless container_existing && cmd_remove.empty? unless docker_container_command cmd_remove log.error "Unable to remove the mutagen daemon files in container \"#{@hostname}\"" return false end log.debug "Removed the mutagen daemon files in container \"#{@hostname}\"" true end end
Version data entries
20 entries across 20 versions & 1 rubygems