X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-remote.git/blobdiff_plain/d320324f24300fbd1c9c63de4384e0e9047093c1..refs/heads/prod:/host/usr/sbin/invirt-janitor diff --git a/host/usr/sbin/invirt-janitor b/host/usr/sbin/invirt-janitor index e631972..4f79c5b 100755 --- a/host/usr/sbin/invirt-janitor +++ b/host/usr/sbin/invirt-janitor @@ -40,6 +40,20 @@ def cleanup(): lv_path = '/dev/xenvg/%s' % lv try: + # If the LV name doesn't start with old_, we probably + # don't actually want to be deleting it. + # + # Put it in the try block because we still want to delete + # the state file. + if not lv.startswith('old_'): + continue + + # If the LV doesn't exist, for whatever reason, don't + # proceed because the dd will simply fill the devfs + # by creating a regular file and filling it with zeros. + if not os.path.exists(lv_path): + continue + syslog.syslog(syslog.LOG_INFO, "Cleaning up LV '%s'" % lv_path) # In a perfect world, this should be erroring out with @@ -47,6 +61,7 @@ def cleanup(): subprocess.call(['/usr/bin/ionice', '-c', '2', '-n', '7', + '/usr/bin/nice', '/bin/dd', 'if=/dev/zero', 'of=%s' % lv_path,