# File lib/rhc-common.rb, line 66
  def self.timeout(val)
    if val
      @mytimeout = val.to_i
      unless @mytimeout > 0 
        puts 'Timeout must be specified as a number greater than 0'
        exit 1
      end
    end
  end