class Kitsune::Kit::Commands::Bootstrap

def ssh_accessible?(droplet_ip, filled_options)

def ssh_accessible?(droplet_ip, filled_options)
  system(
    "ssh -o BatchMode=yes -o StrictHostKeyChecking=accept-new " \
    "-p #{filled_options[:ssh_port]} " \
    "-i #{File.expand_path(filled_options[:ssh_key_path])} " \
    "deploy@#{droplet_ip} true",
    out: File::NULL,
    err: File::NULL
  )
end