Overview
Comment: | Set version to 0.6 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0f1753d7e361623255105fd0dd9df1f0 |
User & Date: | vitus on 2018-07-17 14:24:16 |
Other Links: | manifest | tags |
Context
2018-12-07
| ||
12:46 | Fix typo when checking net interface name check-in: d45c5b5e45 user: vitus tags: trunk | |
2018-07-17
| ||
14:24 | Set version to 0.6 check-in: 0f1753d7e3 user: vitus tags: trunk | |
14:13 | Fix problem which occurs if stray (qemu) promt is left in the monitor socket before command execution check-in: 3e92401463 user: vitus tags: trunk | |
Changes
Modified debian/changelog from [39b466e948] to [772814f9fb].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - + + + + + + + + + |
|
︙ |
Modified debian/files from [9cfdeb4817] to [43ac8ad2a4].
| 1 2 | - + + |
|
Modified debian/postinst from [9ba20bb7bc] to [0d0e831abe].
︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | - + | # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) update-rc.d vws defaults |
︙ |
Modified vws from [8e374cbb8b] to [f8df9b6012].
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | - + | #!/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 import pwd |
︙ |