#!/usr/bin/env ruby -wKU module Scout class Command class Run < Command def run key = @args.first # TODO: this is an awkward way to force creation of the config directory. Could use a little refactoring. configuration_directory = config_dir log.debug("Configuration directory is #{configuration_directory} ") if log # TODO: too much external logic of command doing things TO server. This should be moved into the server class. @scout = Scout::Server.new(server, key, history, log, server_name, @http_proxy, @https_proxy) @scout.load_history unless $stdin.tty? log.info "Sleeping #{@scout.sleep_interval} sec" if log sleep @scout.sleep_interval end @scout.fetch_plan if @scout.new_plan || @scout.time_to_checkin? || @force if @scout.new_plan log.info("Now checking in with new plugin plan") if log elsif @scout.time_to_checkin? log.info("It is time to checkin") if log elsif @force log.info("overriding checkin schedule with --force and checking in now.") if log end create_pid_file_or_exit @scout.run_plugins_by_plan @scout.save_history begin # Since this is a new checkin, overwrite the existing log File.open(log_path, "w") do|log_file| log_file.puts log.messages # log.messages is an array of every message logged during this run end rescue log.info "Could not write to #{log_path}." end else log.info "Not time to checkin yet. Next checkin in #{@scout.next_checkin}. Override by passing --force to the scout command" if log begin # Since this a ping, append to the existing log File.open(log_path, "a") do|log_file| log_file.puts log.messages end rescue log.info "Could not write to #{log_path}." end end end end end end