diskimage-builder/elements/rpm-distro/post-install.d/05-fstab-rootfs-label

10 lines
223 B
Plaintext
Raw Normal View History

#!/bin/bash
set -eu
set -o pipefail
# Fedora 18 sets up for root to have a label of "_/"
# Fedora 19 sets up for root to have a UUID
# This regex will catch both
sed -i "s%.*\s\/\s%LABEL=${DIB_ROOT_LABEL} / %" /etc/fstab