try:
syslog.syslog(syslog.LOG_INFO, "Cleaning up LV '%s'" % lv_path)
- subprocess.check_call(['/usr/bin/ionice',
- '-c', '2',
- '-n', '7',
- '/bin/dd',
- 'if=/dev/zero',
- 'of=%s' % lv_path,
- 'bs=1M'])
+ # In a perfect world, this should be erroring out with
+ # ENOSPC, so we ignore errors
+ subprocess.call(['/usr/bin/ionice',
+ '-c', '2',
+ '-n', '7',
+ '/bin/dd',
+ 'if=/dev/zero',
+ 'of=%s' % lv_path,
+ 'bs=1M'])
# Ignore any errors here, because there's really just not
# anything we can do.