+ # 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
+