Sha256: 3c55b03b46bb7725e83483a0b5fcf243d0a4a608f380ec3692ad6ea2cc37a24b
Contents?: true
Size: 1.24 KB
Versions: 4
Compression:
Stored size: 1.24 KB
Contents
module Itamae module Resource class File def send_tempfile if !attributes.content && !content_file @temppath = nil return end begin src = if content_file content_file else f = Tempfile.open('itamae') f.write(attributes.content) f.close f.path end @temppath = ::File.join(runner.tmpdir, Time.now.to_f.to_s) if backend.is_a?(Itamae::Backend::Docker) run_command(["mkdir", @temppath]) backend.send_file(src, @temppath) @temppath = ::File.join(@temppath, ::File.basename(src)) elsif backend.is_a?(Itamae::Backend::Local) run_command(["touch", @temppath]) run_specinfra(:change_file_mode, @temppath, '0600') run_specinfra(:copy_file, src, @temppath) else run_command(["touch", @temppath]) run_specinfra(:change_file_mode, @temppath, '0600') backend.send_file(src, @temppath) end run_specinfra(:change_file_mode, @temppath, '0600') ensure f.unlink if f end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems