auto-import changelog data from ypserv-1.3.12-2.src.rpm

Mon Aug 27 2001 Florian La Roche <Florian.LaRoche@redhat.de>
- set domainname if it is not yet set #52514
This commit is contained in:
cvsdist 2004-09-09 15:14:37 +00:00
parent 085110d03e
commit 6f4560d768
2 changed files with 22 additions and 12 deletions

View File

@ -24,6 +24,14 @@
RETVAL=0
start() {
DOMAINNAME=`domainname`
if [ "$DOMAINNAME" = "(none)" -o "$DOMAINNAME" = "" ]; then
if [ -n "$NISDOMAIN" ]; then
action $"Setting NIS domain name $NISDOMAIN: " domainname $NISDOMAIN
else
exit 1
fi
fi
echo -n $"Starting YP server services: "
daemon ypserv $YPSERV_ARGS
RETVAL=$?

View File

@ -4,7 +4,7 @@ Summary: The NIS (Network Information Service) server.
Url: http://www.suse.de/~kukuk
Name: ypserv
Version: 1.3.12
Release: 1
Release: 2
Copyright: GNU
Group: System Environment/Daemons
Source0: ftp://ftp.kernel.org/pub/linux/utils/net/NIS/ypserv-%{version}.tar.gz
@ -21,21 +21,20 @@ BuildRequires: gdbm-devel
Buildroot: %{_tmppath}/%{name}-root
%description
The Network Information Service (NIS) is a system which provides
The Network Information Service (NIS) is a system that provides
network information (login names, passwords, home directories, group
information) to all of the machines on a network. NIS can enable
users to login on any machine on the network, as long as the machine
has the NIS client programs running and the user's password is
recorded in the NIS passwd database. NIS was formerly known as Sun
Yellow Pages (YP).
information) to all of the machines on a network. NIS can allow users
to log in on any machine on the network, as long as the machine has
the NIS client programs running and the user's password is recorded in
the NIS passwd database. NIS was formerly known as Sun Yellow Pages
(YP).
This package provides the NIS server, which will need to be running on
your network. NIS clients do not need to be running the server.
Install ypserv if you need an NIS server for your network. You'll
also need to install the yp-tools and ypbind packages onto any NIS
client machines.
your network. NIS clients do not need to be running the server.
Install ypserv if you need an NIS server for your network. You also
need to install the yp-tools and ypbind packages on any NIS client
machines.
%prep
%setup -q
@ -104,6 +103,9 @@ exit 0
%{_includedir}/*/*
%changelog
* Mon Aug 27 2001 Florian La Roche <Florian.LaRoche@redhat.de>
- set domainname if it is not yet set #52514
* Tue Jul 24 2001 Florian La Roche <Florian.LaRoche@redhat.de>
- add gdbm-devel BuildReq #49767
- add ypxfrd init script #44845