/lib/partman/init.d/35dump is in ubiquity 2.10.16.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh -e
. /lib/partman/lib/base.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
|