Revision 8178b322

b/qa/qa-sample.json
95 95
    "burnin-disk-template": "drbd",
96 96
    "burnin-in-parallel": false,
97 97
    "burnin-check-instances": false,
98
    "burnin-rename": "xen-test-rename"
98
    "burnin-rename": "xen-test-rename",
99
    "burnin-reboot": true
99 100
  },
100 101

  
101 102
  "# vim: set syntax=javascript :": null
b/qa/qa_cluster.py
231 231
  parallel = options.get('burnin-in-parallel', False)
232 232
  check_inst = options.get('burnin-check-instances', False)
233 233
  do_rename = options.get('burnin-rename', '')
234
  do_reboot = options.get('burnin-reboot', True)
234 235

  
235 236
  # Get as many instances as we need
236 237
  instances = []
......
260 261
        cmd.append('--http-check')
261 262
      if do_rename:
262 263
        cmd.append('--rename=%s' % do_rename)
264
      if not do_reboot:
265
        cmd.append('--no-reboot')
263 266
      cmd += [inst['name'] for inst in instances]
264 267
      AssertEqual(StartSSH(master['primary'],
265 268
                           utils.ShellQuoteArgs(cmd)).wait(), 0)

Also available in: Unified diff