#!/bin/sh -e

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