class Kitsune::Kit::Commands::SetupRedisDocker

def upload_file(ssh, content, remote_path)

def upload_file(ssh, content, remote_path)
  escaped = Shellwords.escape(content)
  ssh.exec!("mkdir -p #{File.dirname(remote_path)}")
  ssh.exec!("echo #{escaped} > #{remote_path}")
end