Changeset 2286 for trunk/packages


Ignore:
Timestamp:
Apr 2, 2009, 1:48:08 AM (15 years ago)
Author:
broder
Message:

In invirt-remote:

  • ionice the dd to wipe out deleted LVs so it doesn't hose the system.
Location:
trunk/packages/invirt-remote
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-remote/debian/changelog

    r2264 r2286  
     1invirt-remote (0.3.12) unstable; urgency=low
     2
     3  * ionice the dd to wipe out deleted LVs so it doesn't hose the system.
     4
     5 -- Evan Broder <broder@mit.edu>  Thu, 02 Apr 2009 01:46:38 -0400
     6
    17invirt-remote (0.3.11) unstable; urgency=low
    28
  • trunk/packages/invirt-remote/debian/control

    r1822 r2286  
    2323Architecture: all
    2424Depends: ${misc:Depends}, remctl-server, invirt-console-host,
    25  invirt-vnc-server, python-cjson, python-yaml
     25 invirt-vnc-server, python-cjson, python-yaml, util-linux
    2626Description: Installs the Invirt host remctl configuration
    2727 This is the remctl configuration for an Invirt host. It allows any
  • trunk/packages/invirt-remote/host/usr/sbin/invirt-lvm

    r1990 r2286  
    6969    # the floor for now.
    7070    if os.fork() == 0:
    71         call(["/bin/dd", "if=/dev/zero", "of=%s" % new_lvpath])
     71        call(["/usr/bin/ionice", "-c", "3", "/bin/dd", "if=/dev/zero", "of=%s" % new_lvpath])
    7272        call(["/sbin/lvchange", "-a", "n", new_lvpath])
    7373        call(["/sbin/lvchange", "-a", "ey", new_lvpath])
Note: See TracChangeset for help on using the changeset viewer.