Overview
| Comment: | Set version to 0.4 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
52e0b8ea22b584823b3123683c4b6931 |
| User & Date: | vitus on 2016-04-15 14:58:29.380 |
| Other Links: | manifest | tags |
Context
|
2016-04-15
| ||
| 15:15 | Improved docs, removed forgotten debug output check-in: b31d32b79f user: vitus tags: trunk | |
| 14:58 | Set version to 0.4 check-in: 52e0b8ea22 user: vitus tags: trunk | |
| 14:58 | Debugged shutdown command check-in: bf2749a038 user: vitus tags: trunk | |
Changes
Modified vws
from [5b41293860]
to [06ace10362].
1 2 3 4 5 6 7 8 9 10 11 | #!/usr/bin/python """ 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 | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/usr/bin/python
""" 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
VERSION = 0.4
def find_vm(name):
""" Search and return VM directory """
search_path = [os.path.join(os.environ['HOME'], "VWs"),
config.get("directories", "SharedVMs"),
config.get("directories", "AutostartVMs")]
for dirname in search_path:
if not os.access(dirname, os.X_OK):
|
| ︙ | ︙ |