Check-in [0f1753d7e3]
Not logged in
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: 0f1753d7e361623255105fd0dd9df1f0f28d7a81
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
vws (0.5-3) UNRELEASED; urgency=medium









  * Added creation of user kvm (to own autostarted VMs) into postinst
    script

 -- Victor Wagner <vitus@wagner.pp.ru>  Wed, 30 Aug 2017 21:10:48 +0300

vws (0.5-2) unstable; urgency=medium
|
>
>
>
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
vws (0.6-1) unstable; urgency=medium

  * Added RemainAfterExit into systemd unit
  * Check if machine uses incorrect bridge names
  * Read away (qemu) prompt from monitor socket before issuing command

 -- Victor Wagner <vitus@wagner.pp.ru>  Tue, 17 Jul 2018 17:16:37 +0300

vws (0.5-3) unstable; urgency=medium

  * Added creation of user kvm (to own autostarted VMs) into postinst
    script

 -- Victor Wagner <vitus@wagner.pp.ru>  Wed, 30 Aug 2017 21:10:48 +0300

vws (0.5-2) unstable; urgency=medium

Modified debian/files from [9cfdeb4817] to [43ac8ad2a4].

1

vws_0.5-1_all.deb otherosfs optional

|
>
1
2
vws_0.6-1_all.deb otherosfs optional
vws_0.6-1_amd64.buildinfo otherosfs optional

Modified debian/postinst from [9ba20bb7bc] to [0d0e831abe].

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
	dpkg-statoverride --update --add root kvm 4750 /usr/lib/qemu/qemu-bridge-helper
	id -u kvm >/dev/null 2>&1 || adduser --system --ingroup kvm --home /home/virtual/vws --no-create-home kvm
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)







|







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
	dpkg-statoverride --list *qemu-bridge-helper|| dpkg-statoverride --update --add root kvm 4750 /usr/lib/qemu/qemu-bridge-helper
	id -u kvm >/dev/null 2>&1 || adduser --system --ingroup kvm --home /home/virtual/vws --no-create-home kvm
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)

Modified vws from [8e374cbb8b] to [f8df9b6012].

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

VERSION = 0.5
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):












|







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

VERSION = 0.6
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):