Bring Git repository up to 1.0.7.2 level.
This commit is contained in:
parent
a16d8a9011
commit
9393095d0a
11
ChangeLog
11
ChangeLog
@ -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
|
v1.0.7 24-Mar-2017 - Andrew Leary
|
||||||
|
|
||||||
Release version of v1.0.6.16 for wide distribution.
|
Release version of v1.0.6.16 for wide distribution.
|
||||||
|
8
SETUP.sh
8
SETUP.sh
@ -100,6 +100,10 @@ if [ "$OSTYPE" = "Linux" ]; then
|
|||||||
DISTNAME="Mandrake"
|
DISTNAME="Mandrake"
|
||||||
# Format: Linux Mandrake release 8.0 (Cooker) for i586
|
# Format: Linux Mandrake release 8.0 (Cooker) for i586
|
||||||
DISTVERS=$( cat /etc/mandrake-release | awk '{ print $4 }' )
|
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
|
elif [ -f /etc/redhat-release ]; then
|
||||||
DISTNAME="RedHat"
|
DISTNAME="RedHat"
|
||||||
if grep -q e-smith /etc/redhat-release ; then
|
if grep -q e-smith /etc/redhat-release ; then
|
||||||
@ -294,6 +298,10 @@ echo -n ", user 'mbse' $OSTYPE "
|
|||||||
if [ "$OSTYPE" = "Linux" ]; then
|
if [ "$OSTYPE" = "Linux" ]; then
|
||||||
# Different distros have different needs...
|
# Different distros have different needs...
|
||||||
GRPS="uucp"
|
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
|
if grep -q ^wheel /etc/group ; then
|
||||||
GRPS=${GRPS}",wheel"
|
GRPS=${GRPS}",wheel"
|
||||||
fi
|
fi
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -2309,7 +2309,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="1"
|
MAJOR="1"
|
||||||
MINOR="0"
|
MINOR="0"
|
||||||
REVISION="7"
|
REVISION="7.2"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm"
|
SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm"
|
||||||
|
@ -12,7 +12,7 @@ AC_SUBST(SUBDIRS)
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="1"
|
MAJOR="1"
|
||||||
MINOR="0"
|
MINOR="0"
|
||||||
REVISION="7"
|
REVISION="7.2"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm"
|
SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm"
|
||||||
|
@ -152,6 +152,11 @@ void ExtDoor(char *Program, int NoDoorsys, int Y2Kdoorsys, int Comport, int NoSu
|
|||||||
strreplace(Program, (char *)"/N", temp1);
|
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) {
|
if ((strstr(Program, "/A")) != NULL) {
|
||||||
Enter(1);
|
Enter(1);
|
||||||
colour(CYAN, BLACK);
|
colour(CYAN, BLACK);
|
||||||
|
Reference in New Issue
Block a user