ec2/fedora-18-i386-ec2.ks ec2/fedora-18-x86_64-ec2.ks generic/fedora-18-i386-cloud.ks generic/fedora-18-i386.ks generic/fedora-18-i386-minimal.ks generic/fedora-18-x86_64-cloud.ks generic/fedora-18-x86_64.ks generic/fedora-18-x86_64-minimal.ks

Matthew Miller mattdm at fedoraproject.org
Tue May 21 16:25:09 UTC 2013


 ec2/fedora-18-i386-ec2.ks           |    2 +-
 ec2/fedora-18-x86_64-ec2.ks         |    2 +-
 generic/fedora-18-i386-cloud.ks     |    2 +-
 generic/fedora-18-i386-minimal.ks   |    2 +-
 generic/fedora-18-i386.ks           |    2 +-
 generic/fedora-18-x86_64-cloud.ks   |    2 +-
 generic/fedora-18-x86_64-minimal.ks |    2 +-
 generic/fedora-18-x86_64.ks         |    2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 869d53d5d34a3de48e846af5c1018e5a174fc633
Author: Matthew Miller <mattdm at mattdm.org>
Date:   Tue May 21 12:24:33 2013 -0400

    menu.lst needs to be a symlink -- the hardlink gets detached

diff --git a/ec2/fedora-18-i386-ec2.ks b/ec2/fedora-18-i386-ec2.ks
index 41d607e..ecaf72f 100644
--- a/ec2/fedora-18-i386-ec2.ks
+++ b/ec2/fedora-18-i386-ec2.ks
@@ -84,7 +84,7 @@ sed -i 's/root=.*/root=LABEL=_\//' /boot/grub/grub.conf
 echo .
 if ! [[ -e /boot/grub/menu.lst ]]; then
   echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
-  ln /boot/grub/grub.conf /boot/grub/menu.lst
+  ln -s grub.conf /boot/grub/menu.lst
   ln -sf /boot/grub/grub.conf /etc/grub.conf
 fi
 
diff --git a/ec2/fedora-18-x86_64-ec2.ks b/ec2/fedora-18-x86_64-ec2.ks
index 3250fd4..a1013b1 100644
--- a/ec2/fedora-18-x86_64-ec2.ks
+++ b/ec2/fedora-18-x86_64-ec2.ks
@@ -84,7 +84,7 @@ sed -i 's/root=.*/root=LABEL=_\//' /boot/grub/grub.conf
 echo .
 if ! [[ -e /boot/grub/menu.lst ]]; then
   echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
-  ln /boot/grub/grub.conf /boot/grub/menu.lst
+  ln -s grub.conf /boot/grub/menu.lst
   ln -sf /boot/grub/grub.conf /etc/grub.conf
 fi
 
diff --git a/generic/fedora-18-i386-cloud.ks b/generic/fedora-18-i386-cloud.ks
index bf04d8b..299e95b 100644
--- a/generic/fedora-18-i386-cloud.ks
+++ b/generic/fedora-18-i386-cloud.ks
@@ -87,7 +87,7 @@ sed -i 's/root=.*/root=LABEL=_\//' /boot/grub/grub.conf
 echo .
 if ! [[ -e /boot/grub/menu.lst ]]; then
   echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
-  ln /boot/grub/grub.conf /boot/grub/menu.lst
+  ln -s grub.conf /boot/grub/menu.lst
   ln -sf /boot/grub/grub.conf /etc/grub.conf
 fi
 
diff --git a/generic/fedora-18-i386-minimal.ks b/generic/fedora-18-i386-minimal.ks
index 3a6720a..6819478 100644
--- a/generic/fedora-18-i386-minimal.ks
+++ b/generic/fedora-18-i386-minimal.ks
@@ -91,7 +91,7 @@ sed -i 's/root=.*/root=LABEL=_\//' /boot/grub/grub.conf
 echo .
 if ! [[ -e /boot/grub/menu.lst ]]; then
   echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
-  ln /boot/grub/grub.conf /boot/grub/menu.lst
+  ln -s grub.conf /boot/grub/menu.lst
   ln -sf /boot/grub/grub.conf /etc/grub.conf
 fi
 
diff --git a/generic/fedora-18-i386.ks b/generic/fedora-18-i386.ks
index 062f641..5d852b6 100644
--- a/generic/fedora-18-i386.ks
+++ b/generic/fedora-18-i386.ks
@@ -80,7 +80,7 @@ sed -i 's/root=.*/root=LABEL=_\//' /boot/grub/grub.conf
 echo .
 if ! [[ -e /boot/grub/menu.lst ]]; then
   echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
-  ln /boot/grub/grub.conf /boot/grub/menu.lst
+  ln -s grub.conf /boot/grub/menu.lst
   ln -sf /boot/grub/grub.conf /etc/grub.conf
 fi
 
diff --git a/generic/fedora-18-x86_64-cloud.ks b/generic/fedora-18-x86_64-cloud.ks
index 36ce1a2..5a8fe75 100644
--- a/generic/fedora-18-x86_64-cloud.ks
+++ b/generic/fedora-18-x86_64-cloud.ks
@@ -87,7 +87,7 @@ sed -i 's/root=.*/root=LABEL=_\//' /boot/grub/grub.conf
 echo .
 if ! [[ -e /boot/grub/menu.lst ]]; then
   echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
-  ln /boot/grub/grub.conf /boot/grub/menu.lst
+  ln -s grub.conf /boot/grub/menu.lst
   ln -sf /boot/grub/grub.conf /etc/grub.conf
 fi
 
diff --git a/generic/fedora-18-x86_64-minimal.ks b/generic/fedora-18-x86_64-minimal.ks
index 4ae286b..cf46ed3 100644
--- a/generic/fedora-18-x86_64-minimal.ks
+++ b/generic/fedora-18-x86_64-minimal.ks
@@ -91,7 +91,7 @@ sed -i 's/root=.*/root=LABEL=_\//' /boot/grub/grub.conf
 echo .
 if ! [[ -e /boot/grub/menu.lst ]]; then
   echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
-  ln /boot/grub/grub.conf /boot/grub/menu.lst
+  ln -s grub.conf /boot/grub/menu.lst
   ln -sf /boot/grub/grub.conf /etc/grub.conf
 fi
 
diff --git a/generic/fedora-18-x86_64.ks b/generic/fedora-18-x86_64.ks
index 651eebf..6120155 100644
--- a/generic/fedora-18-x86_64.ks
+++ b/generic/fedora-18-x86_64.ks
@@ -80,7 +80,7 @@ sed -i 's/root=.*/root=LABEL=_\//' /boot/grub/grub.conf
 echo .
 if ! [[ -e /boot/grub/menu.lst ]]; then
   echo -n "Linking menu.lst to old-style grub.conf for pv-grub"
-  ln /boot/grub/grub.conf /boot/grub/menu.lst
+  ln -s grub.conf /boot/grub/menu.lst
   ln -sf /boot/grub/grub.conf /etc/grub.conf
 fi
 




More information about the cloud mailing list