2012-06-18 03:17:10 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
shopt -s extglob
|
|
|
|
|
2012-06-18 17:07:37 +08:00
|
|
|
m4_include(common)
|
2012-06-18 05:52:39 +08:00
|
|
|
|
2012-06-18 03:17:10 +08:00
|
|
|
write_source() {
|
2012-06-18 04:35:42 +08:00
|
|
|
local tag= spec= label= uuid= comment=()
|
2012-06-18 05:27:19 +08:00
|
|
|
|
|
|
|
label=$(lsblk -rno LABEL "$1" 2>/dev/null)
|
|
|
|
uuid=$(lsblk -rno UUID "$1" 2>/dev/null)
|
2012-06-18 03:17:10 +08:00
|
|
|
|
|
|
|
if (( bylabel )); then
|
|
|
|
tag=LABEL
|
2012-06-18 05:27:19 +08:00
|
|
|
spec=$label
|
2012-06-18 04:35:42 +08:00
|
|
|
comment=("$source" "UUID=$uuid")
|
2012-06-18 03:17:10 +08:00
|
|
|
elif (( byuuid )); then
|
|
|
|
tag=UUID
|
2012-06-18 05:27:19 +08:00
|
|
|
spec=$uuid
|
2012-06-18 04:35:42 +08:00
|
|
|
comment=("$source")
|
2012-06-18 05:27:19 +08:00
|
|
|
if [[ $label ]]; then
|
2012-06-18 04:35:42 +08:00
|
|
|
comment+=("LABEL=$label")
|
2012-06-18 05:27:19 +08:00
|
|
|
fi
|
|
|
|
else
|
2012-06-18 04:35:42 +08:00
|
|
|
[[ $uuid ]] && comment+=("UUID=$uuid")
|
|
|
|
[[ $label ]] && comment+=("LABEL=$label")
|
2012-06-18 03:17:10 +08:00
|
|
|
fi
|
|
|
|
|
2012-06-18 04:35:42 +08:00
|
|
|
[[ $comment ]] && printf '# %s\n' "${comment[*]}"
|
2012-06-18 05:27:19 +08:00
|
|
|
|
2012-06-18 03:17:10 +08:00
|
|
|
if [[ $spec ]]; then
|
|
|
|
printf '%-20s' "$tag=$spec"
|
|
|
|
else
|
2012-06-18 11:27:23 +08:00
|
|
|
printf '%-20s' "$(mangle "$source")"
|
2012-06-18 03:17:10 +08:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
root=/mnt
|
|
|
|
|
2012-06-18 05:52:39 +08:00
|
|
|
usage() {
|
|
|
|
cat <<EOF
|
|
|
|
usage: ${0##*/} [options]
|
|
|
|
|
|
|
|
Options:
|
2012-06-18 21:34:29 +08:00
|
|
|
-L Use labels for source identifiers
|
|
|
|
-p Avoid printing pseudofs mounts
|
2012-06-18 05:52:39 +08:00
|
|
|
-r root Generate based on 'root' (default: /mnt)
|
|
|
|
-U Use UUIDs for source identifiers
|
|
|
|
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
if [[ -z $1 || $1 = @(-h|--help) ]]; then
|
|
|
|
usage
|
|
|
|
exit $(( $# ? 0 : 1 ))
|
|
|
|
fi
|
|
|
|
|
2012-06-18 21:34:29 +08:00
|
|
|
while getopts ':Lpr:U' flag; do
|
2012-06-18 03:17:10 +08:00
|
|
|
case $flag in
|
|
|
|
L)
|
|
|
|
bylabel=1
|
|
|
|
;;
|
|
|
|
U)
|
|
|
|
byuuid=1
|
|
|
|
;;
|
2012-06-18 21:34:29 +08:00
|
|
|
p)
|
|
|
|
nopseudofs=1
|
|
|
|
;;
|
2012-06-18 03:17:10 +08:00
|
|
|
r)
|
|
|
|
# trim trailing slashes
|
|
|
|
root=${OPTARG%%+(/)}
|
|
|
|
;;
|
2012-06-18 22:05:40 +08:00
|
|
|
:)
|
|
|
|
die '%s: option requires an argument -- '\''%s'\' "${0##*/}" "$OPTARG"
|
|
|
|
;;
|
2012-06-18 03:17:10 +08:00
|
|
|
?)
|
|
|
|
die '%s: invalid option -- '\''%s'\' "${0##*/}" "$OPTARG"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift $(( OPTIND - 1 ))
|
|
|
|
|
|
|
|
if (( bylabel && byuuid )); then
|
|
|
|
die "cannot specify both -U and -L"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# handle block devices
|
2012-06-18 10:53:46 +08:00
|
|
|
findmnt -Recruno SOURCE,TARGET,FSTYPE,OPTIONS "$root" |
|
2012-06-18 03:17:10 +08:00
|
|
|
while read -r source target fstype opts; do
|
|
|
|
# default 5th and 6th columns
|
|
|
|
dump=0 pass=2
|
|
|
|
|
2012-06-18 21:25:43 +08:00
|
|
|
source=$(unmangle "$source")
|
|
|
|
target=$(unmangle "$target")
|
2012-06-18 11:27:23 +08:00
|
|
|
|
2012-06-18 03:17:10 +08:00
|
|
|
# this is root
|
|
|
|
target=${target#$root}
|
|
|
|
if [[ $target = ?(/) ]]; then
|
|
|
|
target=/
|
|
|
|
pass=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# we don't fsck pseudofs
|
|
|
|
if fstype_is_pseudofs "$fstype"; then
|
2012-06-18 21:34:29 +08:00
|
|
|
(( nopseudofs )) && continue
|
2012-06-18 03:17:10 +08:00
|
|
|
pass=0
|
|
|
|
fi
|
|
|
|
|
2012-06-18 10:53:46 +08:00
|
|
|
if [[ $source =~ ^(/.+)\[(.+)\]$ ]]; then
|
|
|
|
# it's a bind mount
|
2012-06-18 11:27:23 +08:00
|
|
|
source=$(findmnt -funcevo TARGET "${BASH_REMATCH[1]}")${BASH_REMATCH[2]}
|
2012-06-18 10:53:46 +08:00
|
|
|
fstype=bind
|
|
|
|
fi
|
|
|
|
|
2012-06-18 03:17:10 +08:00
|
|
|
# write one line
|
|
|
|
write_source "$source"
|
2012-06-18 11:27:23 +08:00
|
|
|
printf '\t%-10s' "$(mangle "$target")" "$fstype" "$opts"
|
2012-06-18 03:17:10 +08:00
|
|
|
printf '\t%s %s' "$dump" "$pass"
|
|
|
|
printf '\n\n'
|
|
|
|
done
|
|
|
|
|
|
|
|
# handle swaps devices
|
|
|
|
{
|
|
|
|
# ignore header
|
|
|
|
read
|
|
|
|
|
|
|
|
while read -r device _ _ _ prio; do
|
|
|
|
options=defaults
|
|
|
|
if [[ $prio != -1 ]]; then
|
|
|
|
options+=,pri=$prio
|
|
|
|
fi
|
|
|
|
|
|
|
|
printf -v device '%b' "$device"
|
|
|
|
|
|
|
|
printf '%-20s\t%-10s\t%-10s\t%-10s\t0 0\n' "$device" 'none' 'swap' "$options"
|
|
|
|
done
|
|
|
|
} </proc/swaps
|
|
|
|
|
2012-06-18 04:05:25 +08:00
|
|
|
# vim: et ts=2 sw=2 ft=sh:
|