File: do_option

package info (click to toggle)
partman-base 105
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,620 kB
  • ctags: 172
  • sloc: ansic: 2,111; sh: 1,674; makefile: 63
file content (7 lines) | stat: -rwxr-xr-x 103 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#!/bin/sh -e

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