diff options
author | Yoann Vandoorselaere <yoann@mandriva.com> | 2000-04-19 10:07:59 +0000 |
---|---|---|
committer | Yoann Vandoorselaere <yoann@mandriva.com> | 2000-04-19 10:07:59 +0000 |
commit | 13c65d3bc517f46608b20b9f15d388e479956c01 (patch) | |
tree | 3a34f8d28032374bb1bbe8ddfada2d5ce629db67 | |
parent | 1aa24bce3e5db88620ede6130f272d76b64bf426 (diff) | |
download | msec-13c65d3bc517f46608b20b9f15d388e479956c01.tar msec-13c65d3bc517f46608b20b9f15d388e479956c01.tar.gz msec-13c65d3bc517f46608b20b9f15d388e479956c01.tar.bz2 msec-13c65d3bc517f46608b20b9f15d388e479956c01.tar.xz msec-13c65d3bc517f46608b20b9f15d388e479956c01.zip |
*** empty log message ***
-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. |