# File lib/rubyipmi/freeipmi/commands/chassisconfig.rb, line 52
    def bootpersistent(value)
      # TODO find out if we can specify multiple key-pair values
      if value == true
        flag = "Chassis_Boot_Flags:Boot_Flags_Persistent=Yes"
      else
        flag = "Chassis_Boot_Flags:Boot_Flags_Persistent=No"
      end
      @options["key-pair"] = "\"#{flag}\""
      value = commit
      @options.delete_notify("key-pair")
      return value
    end