# File lib/rubyipmi/ipmitool/commands/chassis.rb, line 12
    def identify(status=false, delay=0)
      if status
        if not delay.between?(1,255)
          options["cmdargs"] = "chassis identify 255"
        else
          options["cmdargs"] = "chassis identify #{delay}"
        end
      else
        options["cmdargs"] = "chassis identify 0"
      end
      # Run the command
      value = runcmd
      options.delete_notify("cmdargs")
      return value
    end