diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | init-sh/lib.sh | 6 | ||||
-rw-r--r-- | msec.spec | 7 |
4 files changed, 15 insertions, 3 deletions
@@ -1,3 +1,6 @@ +2000-04-25 Yoann Vandoorselaere <yoann@mandrakesoft.com> +- Fix a bug with comment removed pointed out by Konrad Bernloehr. + 2000-04-24 Pixel <pixel@mandrakesoft.com> * conf/perm.[0-4]: fix ugly disgusting fucking bloody buggy bug! @@ -1,4 +1,4 @@ -VERSION = 0.14 +VERSION = 0.15 NAME = msec all: promisc_check msec_find diff --git a/init-sh/lib.sh b/init-sh/lib.sh index d1802f6..271a69a 100644 --- a/init-sh/lib.sh +++ b/init-sh/lib.sh @@ -114,6 +114,8 @@ CommentUserRules() { while read line; do if ! echo "${line}" | grep -qE "^#"; then echo "# ${line}" + else + echo "${line}" fi done < ${tmpfile} > ${file} @@ -263,6 +265,10 @@ groupadd xgrp >& /dev/null groupadd ntools >& /dev/null groupadd ctools >& /dev/null +#Fix the big security hole introduced in cooker +userdel mandrake >& /dev/null +groupdel mandrake >& /dev/null + usermod -G xgrp xfs /usr/share/msec/grpuser.sh --clean @@ -1,5 +1,5 @@ -%define version 0.14 -%define release 2mdk +%define version 0.15 +%define release 1mdk Summary: Security Level & Program for the Linux Mandrake distribution Name: msec @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %config /etc/security/msec %changelog +* Fri Apr 25 2000 Yoann Vandoorselaere <yoann@mandrakesoft.com> 0.15-2mdk +- Fix a bug with comment removed pointed out by Konrad Bernloehr. + * Mon Apr 24 2000 Pixel <pixel@mandrakesoft.com> 0.14-2mdk - conf/perm.[0-4]: fix ugly disgusting fucking bloody buggy bug! (remove bloody /usr/{bin,sbin}/* entries) |