RE: Disable LABEL= within fstab within kickstart ?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I created a script that I put in place as a boot script.  You could use the
script some other way, perhaps in your %post.

grep LABEL /etc/fstab >/dev/null 2>&1
if [ $? -ne 0 ]
then
  # fstab already fixed
  exit 0
fi
unalias cp >/dev/null 2>&1
cd /tmp
cp /etc/fstab /etc/fstab.old
for ALABEL in `grep LABEL /etc/fstab | awk '{print $1}'`
do
  for AMOUNT in `echo $ALABEL | awk -F= '{print $2}'`
  do
    for ADEVICE in `df -k $AMOUNT | tail -1 | awk '{print $1}'`
    do
#     echo "label $ALABEL, mount $AMOUNT, device $ADEVICE"
      echo "s#$ALABEL #$ADEVICE #" >> sedit
    done
  done
done
cat /etc/fstab | sed -f sedit > test-fstab
cp test-fstab /etc/fstab
rm test-fstab
rm sedit

Donald E. Bodle, Jr., RHCT
Sr. Systems Integration Engineer
Platform Development
The Reynolds and Reynolds Co.
(937) 485-1954
 


-----Original Message-----
From: Clifford Perry [mailto:cperry@xxxxxxxxxxxxx] 
Sent: Wednesday, July 09, 2003 3:52 PM
To: kickstart-list@xxxxxxxxxx; anaconda-devel-list@xxxxxxxxxx
Subject: Disable LABEL= within fstab within kickstart ?


Hi all, 

I dont know if anyone knows how this can be done, I do not see any
documented switch or config option within the kickstart docs. How do you
stop/disable anaconda from writting the mount points within /etc/fstab with
LABEL= within the newer versions of anaconda  ? (such as that which comes
with 8.0)

I much prefure to keep the information within the fstab file as physical
device names rather than LABEL's as you get with the 7.x versions of
anaconda/kickstart.

Any information would be appreciated. 

Cliff.


_______________________________________________
Kickstart-list mailing list
Kickstart-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/kickstart-list




[Index of Archives]     [Red Hat General]     [CentOS Users]     [Fedora Users]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]

  Powered by Linux