#!/bin/sh -e

for s in /usr/lib/partman/undo.d/*; do
	if [ -x $s ]; then
		$s || true
	fi
done
