Bring Git repository up to 1.0.7.2 level.

This commit is contained in:
Andrew Leary 2017-06-18 19:45:33 -04:00
parent a16d8a9011
commit 9393095d0a
5 changed files with 26 additions and 2 deletions

View File

@ -1,3 +1,14 @@
v1.0.7.2 18-Jun-2017 - Andrew Leary
1. Fixed first time installation on CentOS 7, caused by the
distribution no longer creating a uucp group by default.
v1.0.7.1 14-Apr-2017 - Andrew Leary
1. Added /U switch on door optional data line; replaced
with the current user's home directory. Requested by Sean
Dennis.
v1.0.7 24-Mar-2017 - Andrew Leary
Release version of v1.0.6.16 for wide distribution.

View File

@ -100,6 +100,10 @@ if [ "$OSTYPE" = "Linux" ]; then
DISTNAME="Mandrake"
# Format: Linux Mandrake release 8.0 (Cooker) for i586
DISTVERS=$( cat /etc/mandrake-release | awk '{ print $4 }' )
elif [ -f /etc/centos-release ]; then
DISTNAME="CentOS"
# Format: CentOS release 7.3.1611 (AltArch)
DISTVERS=$( cat /etc/centos-release | awk '{ print $3 }' )
elif [ -f /etc/redhat-release ]; then
DISTNAME="RedHat"
if grep -q e-smith /etc/redhat-release ; then
@ -294,6 +298,10 @@ echo -n ", user 'mbse' $OSTYPE "
if [ "$OSTYPE" = "Linux" ]; then
# Different distros have different needs...
GRPS="uucp"
if ! grep -q ^uucp /etc/group ; then
# Add the uucp group if it doesn't exist.
$PW groupadd uucp
fi
if grep -q ^wheel /etc/group ; then
GRPS=${GRPS}",wheel"
fi

2
configure vendored
View File

@ -2309,7 +2309,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang
PACKAGE="mbsebbs"
MAJOR="1"
MINOR="0"
REVISION="7"
REVISION="7.2"
VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm"

View File

@ -12,7 +12,7 @@ AC_SUBST(SUBDIRS)
PACKAGE="mbsebbs"
MAJOR="1"
MINOR="0"
REVISION="7"
REVISION="7.2"
VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm"

View File

@ -152,6 +152,11 @@ void ExtDoor(char *Program, int NoDoorsys, int Y2Kdoorsys, int Comport, int NoSu
strreplace(Program, (char *)"/N", temp1);
}
if ((strstr(Program, "/U")) != NULL) {
snprintf(temp1, PATH_MAX, "%s/%s", CFG.bbs_usersdir, exitinfo.Name);
strreplace(Program, (char *)"/U", temp1);
}
if ((strstr(Program, "/A")) != NULL) {
Enter(1);
colour(CYAN, BLACK);