* ionice the dd to wipe out deleted LVs so it doesn't hose the system.
svn path=/trunk/packages/invirt-remote/; revision=2286
+invirt-remote (0.3.12) unstable; urgency=low
+
+ * ionice the dd to wipe out deleted LVs so it doesn't hose the system.
+
+ -- Evan Broder <broder@mit.edu> Thu, 02 Apr 2009 01:46:38 -0400
+
invirt-remote (0.3.11) unstable; urgency=low
* Print errors to stderr on nocreate and nolvm so that the website
Package: invirt-remote-host
Architecture: all
Depends: ${misc:Depends}, remctl-server, invirt-console-host,
- invirt-vnc-server, python-cjson, python-yaml
+ invirt-vnc-server, python-cjson, python-yaml, util-linux
Description: Installs the Invirt host remctl configuration
This is the remctl configuration for an Invirt host. It allows any
commands to be run from the Invirt remote server
# this is running non-interactively), so let's just drop them on
# the floor for now.
if os.fork() == 0:
- call(["/bin/dd", "if=/dev/zero", "of=%s" % new_lvpath])
+ call(["/usr/bin/ionice", "-c", "3", "/bin/dd", "if=/dev/zero", "of=%s" % new_lvpath])
call(["/sbin/lvchange", "-a", "n", new_lvpath])
call(["/sbin/lvchange", "-a", "ey", new_lvpath])
call(["/sbin/lvremove", "--force", new_lvpath])