Script updates for Mandrake

This commit is contained in:
Michiel Broek 2002-01-20 20:43:40 +00:00
parent 271d897e1c
commit dbd6db000b
3 changed files with 9 additions and 6 deletions

View File

@ -4242,11 +4242,12 @@ v0.33.19 26-Oct-2001
* - - /opt/mbse/bin/mblogin @
general:
Made the Makefile system more simple. The bbs programs now
don't run setuid anymore! This makes the system more secure.
Made the Makefile system more simple. The bbs program now
doesn't run setuid anymore! This makes the system more secure.
A new program, mblogin, is written to allow logins with
Fidonet style names from mgetty and telnetd. This is a login
replacement for bbs use only. Normal shell users can't login.
replacement for bbs use only. Normal shell users can't login,
not even root!
On FreeBSD the installed files are not removed anymore from
the source tree.
Added German language file made by Harald Wuensch.
@ -4254,7 +4255,8 @@ v0.33.19 26-Oct-2001
The sourcetree has now a new subdirectory called unix. Here
are all the system specific programs such as mbpasswd,
mblogin and mbuseradd.
Started NetBSD port. Not working yet but does compile.
Started NetBSD port, is in testing fase.
Added support for xinetd.
SETUP.sh:
Better grep to check for excisting usernames like bbs, mbse.

View File

@ -455,6 +455,8 @@ if [ -f /etc/xinetd.conf ]; then
fi
cat << EOF >> $XINET
#:MBSE BBS services are defined here.
#
# Author: Michiel Broek <mbse@users.sourceforge.net>, 20-Jan-2002
service binkp
{

View File

@ -237,7 +237,6 @@ int mkdirs(char *name, mode_t mode)
while ((q = strchr(p, '/'))) {
*q = '\0';
rc = mkdir(buf, mode);
Syslog('-', "mkdir(%s) rc=%d", buf, rc);
last = errno;
*q = '/';
p = q+1;