class Object
Public Instance Methods
apt_nointeractive()
click to toggle source
# File lib/capistrano/prun-ops.rb, line 27 def apt_nointeractive 'sudo DEBIAN_FRONTEND=noninteractive apt-get install -y' end
bastion(host, user:)
click to toggle source
Bastion config
# File lib/capistrano/prun-ops.rb, line 21 def bastion(host, user:) require 'net/ssh/proxy/command' ssh_command = "ssh -W %h:%p -o StrictHostKeyChecking=no #{user}@#{host}" set :ssh_options, proxy: Net::SSH::Proxy::Command.new(ssh_command) end
template(template_name, target_path)
click to toggle source
Common libraries
# File lib/capistrano/prun-ops.rb, line 5 def template(template_name, target_path) begin file = File.read("#{File.dirname(__FILE__)}/config/templates/#{template_name}.erb") rescue file = File.read("lib/capistrano/config/templates/#{template_name}.erb") end template = ERB.new file, nil, trim_mode: "%" rendered = template.result(binding) tmp_file = "/tmp/#{SecureRandom.hex}.#{template_name}" upload! StringIO.new(rendered), tmp_file execute "sudo cp #{tmp_file} #{target_path}" execute "rm #{tmp_file}" end