Index: debian/changelog ================================================================== --- debian/changelog +++ debian/changelog @@ -1,6 +1,14 @@ -vws (0.5-3) UNRELEASED; urgency=medium +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 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 Wed, 30 Aug 2017 21:10:48 +0300 Index: debian/files ================================================================== --- debian/files +++ debian/files @@ -1,1 +1,2 @@ -vws_0.5-1_all.deb otherosfs optional +vws_0.6-1_all.deb otherosfs optional +vws_0.6-1_amd64.buildinfo otherosfs optional Index: debian/postinst ================================================================== --- debian/postinst +++ debian/postinst @@ -19,11 +19,11 @@ case "$1" in configure) update-rc.d vws defaults - dpkg-statoverride --update --add root kvm 4750 /usr/lib/qemu/qemu-bridge-helper + 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) ;; Index: vws ================================================================== --- vws +++ vws @@ -8,11 +8,11 @@ import errno import re import os, sys, time, os.path import pwd -VERSION = 0.5 +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")]