File: dump

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 (12 lines) | stat: -rwxr-xr-x 254 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh -e

. /lib/partman/definitions.sh

for dev in /var/lib/partman/devices/*; do
    [ -d "$dev" ] || continue
    cd $dev
    open_dialog DUMP
    close_dialog
    cat /var/log/partition_dump >>/var/log/partman
    rm /var/log/partition_dump
done