diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | init-sh/lib.sh | 8 | ||||
-rw-r--r-- | msec.spec | 8 |
3 files changed, 15 insertions, 5 deletions
@@ -1,3 +1,7 @@ +2000-04-19 Yoann Vandoorselaere <yoann@mandrakesoft.com> +- Support grub as well as lilo... +- bugfix. + 2000-04-17 Yoann Vandoorselaere <yoann@mandrakesoft.com> * file_perm.sh : removed a check to see if file exist because it block * entry. diff --git a/init-sh/lib.sh b/init-sh/lib.sh index bf4de47..d65fa98 100644 --- a/init-sh/lib.sh +++ b/init-sh/lib.sh @@ -134,7 +134,8 @@ Ttylog() { LoaderUpdate() { - loader=/usr/sbin/detectloader + loader=`/usr/sbin/detectloader` + case "${loader}" in "LILO") file="/etc/lilo.conf" @@ -175,8 +176,9 @@ LoaderUpdate() { ${at_exit}; } -CleanLoaderRule() { - loader=/usr/sbin/detectloader +CleanLoaderRules() { + loader=`/usr/sbin/detectloader` + file="" case "${loader}" in "LILO") file="/etc/lilo.conf" @@ -1,5 +1,5 @@ -%define version 0.12 -%define release 5mdk +%define version 0.13 +%define release 1mdk Summary: Security Level & Program for the Linux Mandrake distribution Name: msec @@ -46,6 +46,10 @@ rm -rf $RPM_BUILD_ROOT %config /etc/security/msec %changelog +* Wed Apr 19 2000 Yoann Vandoorselaere <yoann@mandrakesoft.com> 0.12-5mdk +- Bug fix. +- Support Grub as well as Lilo. + * Tue Apr 18 2000 Yoann Vandoorselaere <yoann@mandrakesoft.com> 0.12-5mdk - cron job at 4:00am, msec_find fix. |