mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
- Add rcNG startup script
- Create user/group (default fido:fido 111:111) for running the server - Bump PORTREVISION - Take maintainership Submitted by: Yuri Kurenkov (partially) Approved by: dsh@vlink.ru (previous MAINTINAER)
This commit is contained in:
parent
ffb6138a2e
commit
88a831311d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=147839
@ -7,16 +7,18 @@
|
||||
|
||||
PORTNAME= binkd
|
||||
PORTVERSION= 0.9.8
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ftp://happy.kiev.ua/pub/fidosoft/mailer/binkd/ \
|
||||
ftp://ftp.rsu.ru/pub/FreeBSD/ports/distfiles/
|
||||
DISTNAME= binkd098
|
||||
|
||||
MAINTAINER= dsh@vlink.ru
|
||||
MAINTAINER= fjoe@FreeBSD.org
|
||||
COMMENT= Fidonet TCP/IP mailer
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
||||
USE_ZIP= yes
|
||||
USE_RC_SUBR= binkd.sh
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
||||
|
||||
@ -34,6 +36,9 @@ pre-configure:
|
||||
@${CP} ${WRKSRC}/mkfls/unix/* ${WRKSRC}/
|
||||
@${CHMOD} a+x ${WRKSRC}/configure
|
||||
|
||||
pre-install:
|
||||
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL
|
||||
|
||||
do-install:
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/binkd ${PREFIX}/sbin
|
||||
@${INSTALL_MAN} ${WRKSRC}/binkd.8 ${MANPREFIX}/man/man8
|
||||
|
32
net/binkd/files/binkd.sh.in
Normal file
32
net/binkd/files/binkd.sh.in
Normal file
@ -0,0 +1,32 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# PROVIDE: binkd
|
||||
# REQUIRE: LOGIN
|
||||
# KEYWORD: FreeBSD shutdown
|
||||
#
|
||||
# Define these binkd_* variables in one of these files:
|
||||
# /etc/rc.conf
|
||||
# /etc/rc.conf.local
|
||||
# /etc/rc.conf.d/apache
|
||||
#
|
||||
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
||||
#
|
||||
binkd_enable=${binkd_enable:-"NO"}
|
||||
binkd_config=${binkd_config:-"%%PREFIX%%/etc/binkd.cfg"}
|
||||
binkd_flags=${binkd_flags:-"-D"}
|
||||
binkd_user=${binkd_user:-"fido"}
|
||||
binkd_pidfile=${binkd_pidfile:-"/var/run/binkd/binkd.pid"}
|
||||
|
||||
. %%RC_SUBR%%
|
||||
|
||||
name="binkd"
|
||||
rcvar=`set_rcvar`
|
||||
command="%%PREFIX%%/sbin/binkd"
|
||||
command_args="${binkd_config}"
|
||||
required_files="${binkd_config}"
|
||||
pidfile="${binkd_pidfile}"
|
||||
|
||||
load_rc_config binkd
|
||||
run_rc_command "$1"
|
76
net/binkd/pkg-install
Normal file
76
net/binkd/pkg-install
Normal file
@ -0,0 +1,76 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
|
||||
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
|
||||
BATCH=${BATCH:=no}
|
||||
|
||||
USER=fido
|
||||
GROUP=fido
|
||||
UID=111
|
||||
GID=111
|
||||
|
||||
ask() {
|
||||
local question default answer
|
||||
|
||||
question=$1
|
||||
default=$2
|
||||
if [ -z "${PACKAGE_BUILDING}" -a x${BATCH} = xno ]; then
|
||||
read -p "${question} [${default}]? " answer
|
||||
fi
|
||||
if [ x${answer} = x ]; then
|
||||
answer=${default}
|
||||
fi
|
||||
echo ${answer}
|
||||
}
|
||||
|
||||
yesno() {
|
||||
local question default answer
|
||||
|
||||
question=$1
|
||||
default=$2
|
||||
while :; do
|
||||
answer=$(ask "${question}" "${default}")
|
||||
case "${answer}" in
|
||||
[Yy]*) return 0;;
|
||||
[Nn]*) return 1;;
|
||||
esac
|
||||
echo "Please answer yes or no."
|
||||
done
|
||||
}
|
||||
|
||||
USER=$(ask "Run ${1} as user" ${USER})
|
||||
UID=$(ask "Enter ${USER} user UID" ${UID})
|
||||
GROUP=$(ask "Enter group name for ${1} user" ${GROUP})
|
||||
GID=$(ask "Enter ${GROUP} group GID" ${GID})
|
||||
echo "Run ${1} as uid=${UID}(${USER}) gid=${GID}(${GROUP})"
|
||||
|
||||
if [ x"$2" = xPRE-INSTALL ]; then
|
||||
|
||||
if /usr/sbin/pw groupshow "${GROUP}" 2>/dev/null; then
|
||||
echo "You already have a group \"${GROUP}\", so I will use it."
|
||||
else
|
||||
if /usr/sbin/pw groupadd ${GROUP} -g ${GID}
|
||||
then
|
||||
echo "Added group \"${GROUP}\"."
|
||||
else
|
||||
echo "Adding group \"${GROUP}\" failed..."
|
||||
echo "Please create it, and try again."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if /usr/sbin/pw user show "${USER}" 2>/dev/null; then
|
||||
echo "You already have a user \"${USER}\", so I will use it."
|
||||
else
|
||||
if /usr/sbin/pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
|
||||
-d ${PKG_PREFIX}/fido \
|
||||
-c "Fido System"
|
||||
then
|
||||
echo "Added user \"${USER}\"."
|
||||
else
|
||||
echo "Adding user \"${USER}\" failed..."
|
||||
echo "Please create it, and try again."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
fi
|
Loading…
Reference in New Issue
Block a user