From: Kern Sibbald Date: Thu, 6 Apr 2006 21:13:48 +0000 (+0000) Subject: Final changes X-Git-Tag: Release-2.0.0~974 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8ffe616df6606fb929e3329fcea0f4425b63942c;p=bacula%2Frescue Final changes --- diff --git a/rescue/linux/cdrom/makebinaries b/rescue/linux/cdrom/makebinaries index 97b6c06..0b61737 100755 --- a/rescue/linux/cdrom/makebinaries +++ b/rescue/linux/cdrom/makebinaries @@ -91,9 +91,16 @@ done cp -fp /lib/ld-linux.so.* roottree/lib/ strip `find roottree/lib/ -maxdepth 1 -type f` 2>/dev/null -# Grub crap -mkdir -p roottree/usr/share/grub -cp -fpr /usr/share/grub/* roottree/usr/share/grub +# Grab grub crap +if [ -e /usr/share/grub ] ; then + mkdir -p roottree/usr/share/grub + cp -fpr /usr/share/grub/* roottree/usr/share/grub +elif [ -e /lib/grub ] ; then + mkdir -p roottree/lib/grub + cp -fpr /lib/grub/* roottree/lib/grub +else + echo "!!!!!!! Warning could not find grub scripts !!!!!!!!! +fi # # Get a bunch of stuff from /etc diff --git a/rescue/version.h b/rescue/version.h index 2a8f542..e8e1297 100644 --- a/rescue/version.h +++ b/rescue/version.h @@ -1,5 +1,5 @@ /* */ #undef VERSION -#define VERSION "1.8.2" -#define BDATE "22 December 2005" -#define LSMDATE "22Dec05" +#define VERSION "1.8.3" +#define BDATE "06 April 2006" +#define LSMDATE "06Apr06"