Comment 19 for bug 1318951

Revision history for this message
Ward Nakchbandi (cosmohq) wrote (last edit ):

and for linux-base

i moved /usr/bin/linux-update-symlinks to /usr/bin/linux-base-update-symlinks
and put

#! /bin/bash

set -e

BOOT_FS=$(df -P -h -T "/boot" | awk 'END{print $2}')

if [[ $BOOT_FS == vfat ]]
then
echo 'vfat does not support symlinks...'
echo 'doing nothing'
exit 0
else
/usr/bin/linux-base-update-symlinks "$@"
fi

in it's place