class Kitsune::Kit::Commands::SetupPostgresDocker
def upload_file(ssh, content, remote_path)
def upload_file(ssh, content, remote_path) escaped_content = Shellwords.escape(content) ssh.exec!("mkdir -p #{File.dirname(remote_path)}") ssh.exec!("echo #{escaped_content} > #{remote_path}") end