Overview
Comment: | Increased vesion to 0.7 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
bdb22341a3cc5b925170dde32ebc04a4 |
User & Date: | vitus on 2019-06-06 15:12:12 |
Other Links: | manifest | tags |
Context
2019-06-07
| ||
08:28 | More impovement of spiceuri command check-in: 55b9862e7a user: vitus tags: trunk | |
2019-06-06
| ||
15:12 | Increased vesion to 0.7 check-in: bdb22341a3 user: vitus tags: trunk | |
15:09 | Retry reading spice uri if first time it fails Improbe diagnistics if it fails second time check-in: 33aa537a64 user: vitus tags: trunk | |
Changes
Modified debian/changelog from [bbfdf8645b] to [45bfd5630c].
1 2 3 4 5 6 7 | vws (0.6-2) unstable; urgency=medium * Fixed bridge-checking code introduced in 0.6 -- Victor Wagner <v.wagner@postgrespro.ru> Fri, 07 Dec 2018 16:13:55 +0300 vws (0.6-1) unstable; urgency=medium | > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | vws (0.7-1) unstable; urgency=medium * Make spiceuri command more robust -- Victor Wagner <v.wagner@postgrespro.ru> Thu, 06 Jun 2019 18:10:04 +0300 vws (0.6-2) unstable; urgency=medium * Fixed bridge-checking code introduced in 0.6 -- Victor Wagner <v.wagner@postgrespro.ru> Fri, 07 Dec 2018 16:13:55 +0300 vws (0.6-1) unstable; urgency=medium |
︙ | ︙ |
Modified debian/files from [215d6a4990] to [0ce78ac36e].
|
| | | | 1 2 | vws_0.7-1_all.deb otherosfs optional vws_0.7-1_amd64.buildinfo otherosfs optional |
Modified vws from [5a984c38d3] to [2f8de9739f].
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/python # -*- encoding: utf-8 -*- """ vws - script to control QEMU/KVM virtual workstations """ # pylint: disable=bad-builtin from ConfigParser import ConfigParser from argparse import ArgumentParser, Namespace import fcntl import socket, select import errno import re import os, sys, time, os.path import pwd | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/usr/bin/python # -*- encoding: utf-8 -*- """ vws - script to control QEMU/KVM virtual workstations """ # pylint: disable=bad-builtin from ConfigParser import ConfigParser from argparse import ArgumentParser, Namespace import fcntl import socket, select import errno import re import os, sys, time, os.path import pwd VERSION = 0.7 def find_vm(name): """ Search and return VM directory """ search_path = [os.path.join(pwd.getpwuid(os.getuid()).pw_dir, "VWs"), config.get("directories", "SharedVMs"), config.get("directories", "AutostartVMs")] for dirname in search_path: if not os.access(dirname, os.X_OK): |
︙ | ︙ |