Overview
Comment: | Added display of privare/public status and spice url to vws list command. Fixes 96cc307ed7 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d72aaf8da49485485befe733055f5853 |
User & Date: | vitus on 2016-04-14 19:56:21 |
Other Links: | manifest | tags |
References
2016-04-14
| ||
19:57 | • Fixed ticket [96cc307ed7]: vws list should display status (private/public) of vm plus 5 other changes artifact: 11380ca530 user: vitus | |
Context
2016-04-14
| ||
20:10 | documented permission setction of config file. Make autostart_user option work check-in: 57c08957e3 user: vitus tags: trunk | |
19:56 | Added display of privare/public status and spice url to vws list command. Fixes 96cc307ed7 check-in: d72aaf8da4 user: vitus tags: trunk | |
14:35 | Set permissions on VM files. Fixes [067fea7873] check-in: 6c894d8ca6 user: vitus tags: trunk | |
Changes
Modified vws from [ab478f8f41] to [c2c3e866b0].
︙ | |||
54 55 56 57 58 59 60 | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | - + - + | if chunk == '': raise IOError("Unexpected EOF From monitor") answer += chunk finally: fcntl.flock(sock, fcntl.LOCK_UN) return answer |
︙ | |||
114 115 116 117 118 119 120 | 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | - + | # # command implementation # def cmd_spiceuri(options): """ vws spiceuri """ |
︙ | |||
161 162 163 164 165 166 167 | 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | - + | print >>sys.stderr, ("Cannot change qemu options. " + "VM is already running") if options.cdrom: options.file = options.cdrom[0] options.id = None cmd_cdrom(options) if options.gui: |
︙ | |||
299 300 301 302 303 304 305 | 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | - - - - + + + + + + + - - + + + + - - - - - + + + + + | address = find_usb(options, get_vm_devices(options.sock)) answer = send_command(options.sock, "usb_del %s" % address) print answer def cmd_list(options): """ vws list """ count = 0 |
︙ |