Sha256: 2210a579ad08761bd75b4bf151c44fa3d1ce81f32dfda7de6f4bceb36158fef5
Contents?: true
Size: 801 Bytes
Versions: 80
Compression:
Stored size: 801 Bytes
Contents
module Flydata module Command class Routine < Base def run print "#{Time.now} " unless flydata.credentials.authenticated? raise "Authentication error. Please login." end log_paths = retrieve_log_paths log_paths and log_paths.size() > 0 and log_paths.each { |path| if File.exist?(path) and File.writable?(path) puts "Start - #{path}. " Flydata::LogMonitor.new(path).setup.rotate else puts "Skip - #{path}. System cannot access this path." end } end private def retrieve_log_paths data_entries = retrieve_data_entries data_entries.map {|e| e['log_path'] if e['log_deletion'] }.compact end end end end
Version data entries
80 entries across 80 versions & 1 rubygems