base-install-scripts/genfstab.in

180 lines
4.1 KiB
Plaintext
Raw Normal View History

2012-06-17 12:17:10 -07:00
#!/bin/bash
shopt -s extglob
m4_include(common)
2012-06-17 14:52:39 -07:00
2012-06-17 12:17:10 -07:00
write_source() {
local src=$1 spec= label= uuid= comment=()
label=$(blkid -s LABEL -o value "$1" 2>/dev/null)
uuid=$(blkid -s UUID -o value "$1" 2>/dev/null)
2012-06-17 12:17:10 -07:00
2012-11-23 20:35:28 -08:00
# bind mounts do not have a UUID!
case $bytag in
'')
[[ $uuid ]] && comment=("UUID=$uuid")
[[ $label ]] && comment+=("LABEL=$label")
;;
LABEL)
spec=$label
[[ $uuid ]] && comment=("$src" "UUID=$uuid")
;;
UUID)
spec=$uuid
comment=("$src")
[[ $label ]] && comment+=("LABEL=$label")
;;
*)
[[ $uuid ]] && comment=("$1" "UUID=$uuid")
[[ $label ]] && comment+=("LABEL=$label")
[[ $bytag ]] && spec=$(blkid -s "$bytag" -o value "$1")
;;
esac
2012-06-17 12:17:10 -07:00
[[ $comment ]] && printf '# %s\n' "${comment[*]}"
2012-06-17 12:17:10 -07:00
if [[ $spec ]]; then
printf '%-20s' "$bytag=$spec"
2012-06-17 12:17:10 -07:00
else
printf '%-20s' "$(mangle "$src")"
2012-06-17 12:17:10 -07:00
fi
}
2012-06-17 14:52:39 -07:00
usage() {
cat <<EOF
usage: ${0##*/} [options] root
2012-06-17 14:52:39 -07:00
Options:
-L Use labels for source identifiers (shortcut for -t LABEL)
-p Avoid printing pseudofs mounts
-t TAG Use TAG for source identifiers
-U Use UUIDs for source identifiers (shortcut for -t UUID)
2012-06-17 14:52:39 -07:00
2012-11-12 18:00:09 -08:00
-h Print this help message
genfstab generates output suitable for addition to an fstab file based on the
devices mounted under the mountpoint specified by the given root.
2012-06-17 14:52:39 -07:00
EOF
}
if [[ -z $1 || $1 = @(-h|--help) ]]; then
usage
exit $(( $# ? 0 : 1 ))
fi
while getopts ':Lpt:U' flag; do
2012-06-17 12:17:10 -07:00
case $flag in
L)
bytag=LABEL
2012-06-17 12:17:10 -07:00
;;
U)
bytag=UUID
2012-06-17 12:17:10 -07:00
;;
p)
nopseudofs=1
;;
t)
bytag=${OPTARG^^}
;;
:)
die '%s: option requires an argument -- '\''%s'\' "${0##*/}" "$OPTARG"
;;
2012-06-17 12:17:10 -07:00
?)
die '%s: invalid option -- '\''%s'\' "${0##*/}" "$OPTARG"
;;
esac
done
shift $(( OPTIND - 1 ))
(( $# )) || die "No root directory specified"
root=$1; shift
if ! mountpoint -q "$root"; then
die "$root is not a mountpoint"
fi
2012-06-17 12:17:10 -07:00
if (( bylabel && byuuid )); then
die "cannot specify both -U and -L"
fi
# handle block devices
findmnt -Recvruno SOURCE,TARGET,FSTYPE,OPTIONS,FSROOT "$root" |
while read -r src target fstype opts fsroot; do
2012-06-17 12:17:10 -07:00
# default 5th and 6th columns
dump=0 pass=2
src=$(unmangle "$src")
target=$(unmangle "$target")
2012-06-17 12:17:10 -07:00
target=${target#$root}
if (( !foundroot )) && findmnt "$src" "$root" >/dev/null; then
# this is root. we can't possibly have more than one...
pass=1 foundroot=1
2012-06-17 12:17:10 -07:00
fi
# we don't fsck pseudofs
if fstype_is_pseudofs "$fstype"; then
(( nopseudofs )) && continue
2012-06-17 12:17:10 -07:00
pass=0
fi
if [[ $fsroot != / ]]; then
if [[ $fstype = btrfs ]]; then
opts+=,subvol=${fsroot#/}
else
# it's a bind mount
src=$(findmnt -funcevo TARGET "$src")$fsroot
if [[ $src -ef $target ]]; then
# hrmm, this is weird. we're probably looking at a file or directory
# that was bound into a chroot from the host machine. Ignore it,
# because this won't actually be a valid mount. Worst case, the user
# just re-adds it.
continue
fi
fstype=none
opts+=,bind
pass=0
fi
2012-06-17 19:53:46 -07:00
fi
2012-06-17 12:17:10 -07:00
# write one line
write_source "$src"
printf '\t%-10s' "/$(mangle "${target#/}")" "$fstype" "$opts"
2012-06-17 12:17:10 -07:00
printf '\t%s %s' "$dump" "$pass"
printf '\n\n'
done
# handle swaps devices
{
# ignore header
read
while read -r device type _ _ prio; do
2012-06-17 12:17:10 -07:00
options=defaults
if [[ $prio != -1 ]]; then
options+=,pri=$prio
fi
2012-12-09 10:59:27 -08:00
# skip files marked deleted by the kernel
[[ $device = *'\\040(deleted)' ]] && continue
if [[ $type = file ]]; then
printf '%-20s' "$device"
elif [[ $device = /dev/dm-+([0-9]) ]]; then
# device mapper doesn't allow characters we need to worry
# about being mangled, and it does the escaping of dashes
# for us in sysfs.
write_source "$(dm_name_for_devnode "$device")"
else
write_source "$(unmangle "$device")"
fi
2012-06-17 12:17:10 -07:00
printf '\t%-10s\t%-10s\t%-10s\t0 0\n\n' 'none' 'swap' "$options"
2012-06-17 12:17:10 -07:00
done
} </proc/swaps
2012-06-17 13:05:25 -07:00
# vim: et ts=2 sw=2 ft=sh: