Index: Makefile ================================================================== --- Makefile +++ Makefile @@ -16,27 +16,27 @@ vws.service: vws.service.in sed 's!@bindir@!$(bindir)!' $+ > $@ install: vws vws.1 find_free_port.1 vws.conf vws.service - [ -d $(DESTDIR)$(bindir) ] || $(INSTALL) -d -m 755 -o root $(DESTDIR)$(bindir) - [ -d $(DESTDIR)$(mandir) ] || $(INSTALL) -d -m 755 -o root $(DESTDIR)$(mandir) - [ -d $(DESTDIR)$(mandir)/man1 ]||$(INSTALL) -d -m 755 -o root $(DESTDIR)$(mandir)/man1 - [ -d $(DESTDIR)$(systemddir) ] || $(INSTALL) -d -m 755 -o root $(DESTDIR)/lib/systemd/system - [ -d $(DESTDIR)$(sysconfdir) ] || $(INSTALL) -d -m 755 -o root $(DESTDIR)$(sysconfdir) - [ -d $(DESTDIR)$(initddir) ] || $(INSTALL) -d -m 755 -o root $(DESTDIR)$(initddir) - $(INSTALL) -c -m 755 -o root find_free_port $(DESTDIR)$(bindir) - $(INSTALL) -c -m 755 -o root vws $(DESTDIR)$(bindir) - - [ -f $(DESTDIR)$(sysconfdir)/vws.conf ]|| $(INSTALL) -c -m 644 -o root vws.conf $(DESTDIR)$(sysconfdir) - $(INSTALL) -c -m 644 -o root vws.1 $(DESTDIR)$(mandir)/man1 - $(INSTALL) -c -m 644 -o root find_free_port.1 $(DESTDIR)$(mandir)/man1 - $(INSTALL) -c -m 644 -o root vws.service $(DESTDIR)$(systemddir) - $(INSTALL) -c -m 644 -o root vws.init $(DESTDIR)$(initddir)/vws + [ -d $(DESTDIR)$(bindir) ] || $(INSTALL) -d -m 755 $(DESTDIR)$(bindir) + [ -d $(DESTDIR)$(mandir) ] || $(INSTALL) -d -m 755 $(DESTDIR)$(mandir) + [ -d $(DESTDIR)$(mandir)/man1 ]||$(INSTALL) -d -m 755 $(DESTDIR)$(mandir)/man1 + [ -d $(DESTDIR)$(systemddir) ] || $(INSTALL) -d -m 755 $(DESTDIR)/lib/systemd/system + [ -d $(DESTDIR)$(sysconfdir) ] || $(INSTALL) -d -m 755 $(DESTDIR)$(sysconfdir) + [ -d $(DESTDIR)$(initddir) ] || $(INSTALL) -d -m 755 $(DESTDIR)$(initddir) + $(INSTALL) -c -m 755 find_free_port $(DESTDIR)$(bindir) + $(INSTALL) -c -m 755 vws $(DESTDIR)$(bindir) + + [ -f $(DESTDIR)$(sysconfdir)/vws.conf ]|| $(INSTALL) -c -m 644 vws.conf $(DESTDIR)$(sysconfdir) + $(INSTALL) -c -m 644 vws.1 $(DESTDIR)$(mandir)/man1 + $(INSTALL) -c -m 644 find_free_port.1 $(DESTDIR)$(mandir)/man1 + $(INSTALL) -c -m 644 vws.service $(DESTDIR)$(systemddir) + $(INSTALL) -c -m 644 vws.init $(DESTDIR)$(initddir)/vws origtarball: vws find_free_port vws.init vws.service.in Makefile vws.conf vws.mkd find_free_port.mkd .pylintrc README.md - version=$$(sed -n 's/VERSION = "\?\([^"]\+\)"\?/\1/p' vws); \ + version=$$(sed -n 's/__version__ = "\?\([^"]\+\)"\?/\1/p' vws); \ mkdir vws-$$version; cp $+ vws-$$version; \ tar cjf ../vws_$$version.orig.tar.bz2 vws-$$version; \ rm -rf vws-$$version deb: origtarball Index: debian/changelog ================================================================== --- debian/changelog +++ debian/changelog @@ -1,6 +1,12 @@ -vws (0.8.1-1) UNRELEASED; urgency=medium +vws (0.8.2-1) unstable; urgency=medium + + * Fix template of start script for new qemu + + -- Victor Wagner Sat, 03 Jan 2026 18:39:28 +0300 + +vws (0.8.1-1) unstable; urgency=medium * Support of new info-network output style -- Victor Wagner Thu, 28 Jul 2022 18:04:45 +0300 Index: debian/files ================================================================== --- debian/files +++ debian/files @@ -1,2 +1,2 @@ -vws_0.8.1-1_all.deb otherosfs optional -vws_0.8.1-1_amd64.buildinfo otherosfs optional +vws_0.8.2-1_all.deb otherosfs optional +vws_0.8.2-1_amd64.buildinfo otherosfs optional Index: vws ================================================================== --- vws +++ vws @@ -17,11 +17,11 @@ import sys import time import pwd import grp -VERSION = "0.8.1" +__version__ = "0.8.2" config = ConfigParser(interpolation=None) # pylint: disable=invalid-name def find_vm(name): @@ -609,11 +609,11 @@ print(send_command(options.sock, "sendkey " + keyspec)) def cmd_version(_): """vws cersion""" - print(VERSION) + print(__version__) def cmd_snapshot(options): """vws snapshot - create snapshot""" if not options.stopped: