# File lib/rubyipmi/ipmitool/commands/power.rb, line 28
    def cycle
      # if the system is off turn it on
      if off?
        on
      else
        command("cycle")
      end

    end