Script updates for Mandrake
This commit is contained in:
parent
271d897e1c
commit
dbd6db000b
10
ChangeLog
10
ChangeLog
@ -4242,11 +4242,12 @@ v0.33.19 26-Oct-2001
|
|||||||
* - - /opt/mbse/bin/mblogin @
|
* - - /opt/mbse/bin/mblogin @
|
||||||
|
|
||||||
general:
|
general:
|
||||||
Made the Makefile system more simple. The bbs programs now
|
Made the Makefile system more simple. The bbs program now
|
||||||
don't run setuid anymore! This makes the system more secure.
|
doesn't run setuid anymore! This makes the system more secure.
|
||||||
A new program, mblogin, is written to allow logins with
|
A new program, mblogin, is written to allow logins with
|
||||||
Fidonet style names from mgetty and telnetd. This is a login
|
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
|
On FreeBSD the installed files are not removed anymore from
|
||||||
the source tree.
|
the source tree.
|
||||||
Added German language file made by Harald Wuensch.
|
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
|
The sourcetree has now a new subdirectory called unix. Here
|
||||||
are all the system specific programs such as mbpasswd,
|
are all the system specific programs such as mbpasswd,
|
||||||
mblogin and mbuseradd.
|
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:
|
SETUP.sh:
|
||||||
Better grep to check for excisting usernames like bbs, mbse.
|
Better grep to check for excisting usernames like bbs, mbse.
|
||||||
|
2
SETUP.sh
2
SETUP.sh
@ -455,6 +455,8 @@ if [ -f /etc/xinetd.conf ]; then
|
|||||||
fi
|
fi
|
||||||
cat << EOF >> $XINET
|
cat << EOF >> $XINET
|
||||||
#:MBSE BBS services are defined here.
|
#:MBSE BBS services are defined here.
|
||||||
|
#
|
||||||
|
# Author: Michiel Broek <mbse@users.sourceforge.net>, 20-Jan-2002
|
||||||
|
|
||||||
service binkp
|
service binkp
|
||||||
{
|
{
|
||||||
|
@ -237,7 +237,6 @@ int mkdirs(char *name, mode_t mode)
|
|||||||
while ((q = strchr(p, '/'))) {
|
while ((q = strchr(p, '/'))) {
|
||||||
*q = '\0';
|
*q = '\0';
|
||||||
rc = mkdir(buf, mode);
|
rc = mkdir(buf, mode);
|
||||||
Syslog('-', "mkdir(%s) rc=%d", buf, rc);
|
|
||||||
last = errno;
|
last = errno;
|
||||||
*q = '/';
|
*q = '/';
|
||||||
p = q+1;
|
p = q+1;
|
||||||
|
Reference in New Issue
Block a user