2007-01-16 00:26:46 +01:00
|
|
|
#
|
2008-10-23 17:10:56 +02:00
|
|
|
# spec file for package netcfg (Version 11.1)
|
2007-01-16 00:26:46 +01:00
|
|
|
#
|
2008-01-28 16:01:43 +01:00
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:26:46 +01:00
|
|
|
#
|
2008-09-08 16:22:46 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2007-01-16 00:26:46 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2008-03-05 21:32:42 +01:00
|
|
|
|
2007-01-16 00:26:46 +01:00
|
|
|
Name: netcfg
|
2008-01-28 16:01:43 +01:00
|
|
|
License: GPL v2 or later
|
2007-01-16 00:26:46 +01:00
|
|
|
Group: System/Base
|
2008-01-28 16:01:43 +01:00
|
|
|
AutoReqProv: on
|
|
|
|
PreReq: coreutils aaa_base
|
2007-01-16 00:26:46 +01:00
|
|
|
Summary: Network Configuration Files in /etc
|
2008-10-23 17:10:56 +02:00
|
|
|
Version: 11.1
|
|
|
|
Release: 1
|
2008-01-28 16:01:43 +01:00
|
|
|
BuildArch: noarch
|
2007-01-16 00:26:46 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
Source0: defaultdomain
|
|
|
|
Source1: exports
|
|
|
|
Source2: ftpusers
|
|
|
|
Source3: host.conf
|
|
|
|
Source4: hosts
|
|
|
|
Source5: hosts.allow
|
|
|
|
Source6: hosts.deny
|
|
|
|
Source7: hosts.equiv
|
|
|
|
Source8: hosts.lpd
|
|
|
|
Source9: networks
|
|
|
|
Source10: protocols
|
|
|
|
Source11: services.bz2
|
|
|
|
Source12: HOSTNAME
|
|
|
|
Source13: aliases
|
|
|
|
Source14: ethers
|
|
|
|
Source15: netgroup
|
|
|
|
Patch: services-suse.diff
|
|
|
|
|
|
|
|
%description
|
|
|
|
All of the basic configuration files for the network programs including
|
|
|
|
/etc/aliases, /etc/protocols, and /etc/services.
|
|
|
|
|
|
|
|
These are often used by network routines in the C library and therefore
|
|
|
|
must be installed for all network programs.
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-01-28 16:01:43 +01:00
|
|
|
%prep
|
|
|
|
|
|
|
|
%build
|
2007-01-16 00:26:46 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc
|
|
|
|
for i in HOSTNAME aliases defaultdomain exports ftpusers host.conf hosts hosts.allow hosts.deny hosts.equiv hosts.lpd netgroup networks protocols services.bz2 ethers; do
|
|
|
|
install $RPM_SOURCE_DIR/$i $RPM_BUILD_ROOT/etc
|
|
|
|
done
|
|
|
|
bunzip2 $RPM_BUILD_ROOT/etc/services.bz2
|
|
|
|
patch -p0 $RPM_BUILD_ROOT/etc/services < $RPM_SOURCE_DIR/services-suse.diff
|
|
|
|
rm -f $RPM_BUILD_ROOT/etc/services.orig
|
|
|
|
|
|
|
|
%pre
|
|
|
|
if [ "0$1" -ge "2" ]; then
|
|
|
|
# If we have a /etc/netgroup.rpmsave and no /etc/netgroup, copy
|
|
|
|
# /etc/netgroup.rpmsave and use it later instead of the new one.
|
|
|
|
if [ -f /etc/netgroup.rpmsave -a ! -e /etc/netgroup ]; then
|
|
|
|
cp /etc/netgroup.rpmsave /etc/...netgroup.new.rpmnew
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
%post
|
|
|
|
test -f etc/defaultdomain.rpmnew -a ! -s etc/defaultdomain.rpmnew && rm -f etc/defaultdomain.rpmnew
|
|
|
|
if [ -f etc/...netgroup.new.rpmnew ]; then
|
|
|
|
test ! -f etc/netgroup.rpmnew && cp etc/netgroup etc/netgroup.rpmnew
|
|
|
|
mv etc/...netgroup.new.rpmnew etc/netgroup
|
|
|
|
fi
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(644,root,root,755)
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/HOSTNAME
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/aliases
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/defaultdomain
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/ethers
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/exports
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/ftpusers
|
|
|
|
%config(noreplace) /etc/host.conf
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/hosts
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/hosts.allow
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/hosts.deny
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/hosts.equiv
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/hosts.lpd
|
|
|
|
%config(noreplace) /etc/netgroup
|
|
|
|
%config(noreplace) /etc/networks
|
2008-09-08 16:22:46 +02:00
|
|
|
%config(noreplace) /etc/protocols
|
|
|
|
%config(noreplace) /etc/services
|
2007-01-16 00:26:46 +01:00
|
|
|
|
2008-01-28 16:01:43 +01:00
|
|
|
%changelog
|
2008-10-23 17:10:56 +02:00
|
|
|
* Thu Oct 23 2008 pgajdos@suse.cz
|
|
|
|
- commented out
|
|
|
|
spr-itunes 0/tcp # Shirt Pocket netTunes
|
|
|
|
spl-itunes 0/tcp # Shirt Pocket launchTunes
|
|
|
|
lines [bnc#435600]
|
2008-09-08 16:22:46 +02:00
|
|
|
* Mon Sep 08 2008 pgajdos@suse.cz
|
|
|
|
- /etc/services and /etc/protocols was marked as %%config(noreplace)
|
|
|
|
[bnc#422884]
|
2008-03-26 16:25:26 +01:00
|
|
|
* Tue Mar 25 2008 mkoenig@suse.de
|
|
|
|
- add rpcbind alias for sunrpc [fate#300607]
|
2008-03-05 21:32:42 +01:00
|
|
|
* Tue Mar 04 2008 pgajdos@suse.cz
|
|
|
|
- added swat 901/tcp back to the suse.patch [#362590]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jan 28 2008 kukuk@suse.de
|
|
|
|
- Update services file from IANA [bnc#352665]
|
|
|
|
- Fix PreReqs
|
|
|
|
* Wed Oct 04 2006 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Update services file from IANA
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue May 23 2006 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Update protocols and services files from IANA
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- converted neededforbuild to BuildRequires
|
2008-09-08 16:22:46 +02:00
|
|
|
* Thu Dec 15 2005 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Update services file
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Sep 13 2005 mmj@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Readd the correct services file to patch
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Sep 12 2005 mmj@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add IANA official git port (9418) to services
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Jul 07 2005 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Update services file
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Mar 08 2005 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Change comments to make peopleusing file wrongly happy [#71247]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Feb 23 2005 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Update /etc/services from IANA
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue May 11 2004 mmj@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add example for mlmmj list in /etc/aliases
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Apr 16 2004 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add smtps back again, got lost with last update
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Apr 02 2004 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Use linux.site instead of linux.local [Bug #36949]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Mar 31 2004 mls@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- add link-local network
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Mar 29 2004 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Comment out shilp entry to make reading tcpdump output easier
|
|
|
|
[Bug #37359]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Sun Feb 15 2004 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Update etc/services file with IANA version
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Dec 01 2003 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add etc/netgroup (moved from aaa_base)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Nov 14 2003 adrian@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- add registered services to service file
|
|
|
|
( sane, distcc, svn )
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Sep 01 2003 draht@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added apcupsd daemons to /etc/hosts.allow (#29646)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Aug 15 2003 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Make rpm -V quiet
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue May 13 2003 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Remove inetd.conf, is now part of inetd package
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Apr 24 2003 olh@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- run tftp via tcpd, not in.tftpd
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Apr 15 2003 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- change version numbering
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Apr 15 2003 arvin@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added pop3s and imaps services to inetd.conf (bug #26281)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Mar 11 2003 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add aaa_base to PreReq. to fix update problems [Bug #25102]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Feb 13 2003 meissner@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add VNC httpd and 2 VNC display ports, which start Xvnc on demand.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jan 27 2003 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add etc/ethers [Bug #23016]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Oct 24 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: Add lotusnotes alias to lotusnote [Bug #21145]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Sep 17 2002 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- removed bogus self-provides
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Sep 04 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: Add ports for sieve and smtps
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Aug 26 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: add mrt entry in temporary area
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Aug 23 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Fix pop2 daemon name, add imap pop3 daemon [Bug #14474]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Aug 15 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add PreRequires [Bug #17899]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Sat Aug 03 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: add rpcbind alias to sunrpc entry
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Jul 30 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Fix get_version_number.sh
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jul 22 2002 adrian@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- add disabled fam daemon line to inetd.conf
|
|
|
|
- remove KDE 2 talk daemon lines
|
|
|
|
(not anymore support due to security issues)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Jul 17 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Remove etc/defaultdomian.rpmnew if empty in postinstall script
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Jul 12 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add /etc/aliases as config(noreplace).
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Jul 05 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Update /etc/services (add new, official ports)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Jul 02 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- fix typo in /etc/services [Bug #16478]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Jun 13 2002 draht@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- removed lprold from the comments in /etc/hosts.allow.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Jun 13 2002 draht@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- redo change from Tue Feb 5 18:38:44 MET 2002 - draht@suse.de
|
|
|
|
commented out services time, telnet, login, finger from default
|
|
|
|
/etc/inetd.conf. No services are configured by default.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed May 15 2002 kssingvo@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add cups-lpd entry to inetd.conf (commented out)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Mar 13 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Remove not supported entries [Bug #14932]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Mar 05 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add inofficial entries for pbs to etc/services [Bug #14450]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Mar 01 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add sap db entries back to etc/services
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Feb 13 2002 werner@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add the options '-L sendmail' and '-Am' to be sure that
|
|
|
|
sendmail does work as server not as msp client
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Feb 05 2002 draht@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- revert changes in /etc/inetd.conf
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Feb 05 2002 draht@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- more descriptive comment in /etc/exports.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Feb 05 2002 draht@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Added users db4web dpbox ingres mail oracle perforce pop sapdb
|
|
|
|
squid vscan wnn wwwrun and zope to /etc/ftpusers.
|
|
|
|
No users removed, legacy users stay.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Feb 05 2002 draht@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- commented out services telnet, login and finger from default
|
|
|
|
/etc/inetd.conf file.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Feb 05 2002 draht@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- add list of wrapped services and examples to /etc/hosts.allow
|
|
|
|
- changed comment on /etc/hosts.deny
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Feb 05 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Fix x11 entry in etc/services
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Feb 01 2002 draht@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- removed ^m characters from etc/services
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Jan 22 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Sync protocols with official list [Bug #12870]
|
|
|
|
- Sync services with official list
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Jan 18 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- disable talk, not in wide use today
|
|
|
|
- amindexd and amidxtaped should run as user amanda [Bug #12619]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Jan 17 2002 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- fixed filelist
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Jan 16 2002 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Remove /var/adm/setup, diphost and add defaultdomain and HOSTNAME
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Oct 22 2001 mmj@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Change inetd.conf to have vsftpd support
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jul 30 2001 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Fix typo in hosts.equiv [Bug #9420]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Jul 10 2001 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Change inetd.conf entry for tftp to match new version
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Jul 06 2001 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Fix path to initscript in comment
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Jun 05 2001 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- services: Add ksysguard
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed May 09 2001 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Don't send wrong email about changed ftp server
|
|
|
|
- Fix english comment in inetd.conf [Bug #7913]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Apr 30 2001 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added sql6 as 7210/tcp to etc/services
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Apr 20 2001 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add comments for use of ktalkd [Bug #6566]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Apr 11 2001 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Revert some of the last changes [Bug #6957]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Mar 26 2001 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Update etc/protocols from official iana list [Bug #4183]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Sat Mar 24 2001 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: Add canna entry
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Mar 22 2001 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Fix example in hosts.allow
|
|
|
|
- etc/inetd.conf: Only enable time, telnet, rlogin and talk.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Feb 09 2001 schwab@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Fix cvs pserver example (#6293).
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Dec 14 2000 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- removed lines db2cdb2inst1 and db2idb2inst1 from etc/services (#4461)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Sat Nov 18 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add dqs entries for nashif@suse.de
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Sep 27 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add more Wnn* entries to etc/services
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Jul 28 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Fix rsync example
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jun 19 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Compress tar archive
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jun 19 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Enable swat in etc/inetd.conf
|
2008-09-08 16:22:46 +02:00
|
|
|
* Sat May 27 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Fix tar archive
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu May 25 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add etc/host.conf
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon May 15 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Remove ypserv entries from hosts.allow/hosts.deny
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon May 15 2000 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- removed duplicate line for opalis-rdv
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon May 15 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: Add procstatd entry
|
|
|
|
- etc/inetd.conf: Likewise.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue May 09 2000 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added services entry for codine_commd
|
|
|
|
(inofficial 536/tcp)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Apr 17 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/inetd.conf: Change tftpd default configuration to make a
|
|
|
|
chroot into tftpboot directory
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Apr 05 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: Add more entries
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Apr 05 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/inetd.conf: service name is imap, not imap2 [Bug 2607]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Mar 13 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: Now really fix axnet entry [Bug 2080]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Feb 25 2000 garloff@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- cvs entry fixed: path to cvs added.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Feb 25 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: Add more entries [Bug 2080]
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Feb 21 2000 garloff@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added commented entry for cvs-pserver to inet.conf
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Feb 16 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: Add pbs entries
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Feb 15 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/inetd.conf: fix some typos
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Jan 20 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add missing amanda client entry to etc/inetd.conf
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Jan 19 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add missing amanda idx entries to etc/services
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Jan 13 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/ftpusers: Add more systemuser from /etc/passwd
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Jan 13 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Add IPv6 addresses to etc/hosts
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Jan 11 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: Add db2 and http-rman entries
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jan 03 2000 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/inetd.conf: Remove RPC entries
|
|
|
|
- etc/protocols: Add IPv6
|
|
|
|
- etc/services: Add all known services
|
|
|
|
- etc/rpc: Removed, is in shlibs
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Oct 21 1999 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/inetd.conf: fix comments, disable btx and rplay
|
|
|
|
- etc/ftpusers: Add more system users
|
|
|
|
- etc/services: Add more official assinged numbers
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Sep 13 1999 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Sat Sep 11 1999 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Make in.ftpd default ftp daemon (fixes bug #268)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Thu Sep 02 1999 kukuk@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- Don't start identd from inetd
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jul 12 1999 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- fixed buglet in %%post (create var/adm/notify/messages)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jul 12 1999 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- updated etc/services (added https, ftp, data)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue May 25 1999 uli@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added services/inetd.conf entries for Mimer
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Mar 30 1999 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- enabled time services in /etc/inetd.conf
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Mar 22 1999 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added "bin" and "daemon" to /etc/ftpusers
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Mar 09 1999 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- /etc/services: added entries for IBM DB2 Database
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Mar 02 1999 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- glibc is libc.so.6.1 on alpha: no etc/rpc there
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Jan 13 1999 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added some entries for samba to inetd.conf and services
|
2008-01-28 16:01:43 +01:00
|
|
|
* Sat Dec 05 1998 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added netplan to /etc/services
|
|
|
|
- marked /etc/inetd.conf as noreplace
|
2008-09-08 16:22:46 +02:00
|
|
|
* Sun Nov 29 1998 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added rsync to etc/services and etc/inetd.conf
|
2008-01-28 16:01:43 +01:00
|
|
|
* Wed Nov 18 1998 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- disabled vbox in inetd.conf
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Nov 17 1998 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- hosts.equiv: typo fix
|
|
|
|
- etc/services: added afpovertcp, mysql
|
|
|
|
- etc/inetd.conf: added leafnode, vboxd
|
|
|
|
removed in.nntpd
|
2008-01-28 16:01:43 +01:00
|
|
|
* Fri Aug 21 1998 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added some entries to /etc/services to be friendly for netatalk
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Aug 17 1998 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- changed entry for rplayd in inetd.conf
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Jul 28 1998 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- changed comment headers in /etc/hosts and /etc/hosts.lpd
|
|
|
|
- added "noreplace" feature.
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jul 13 1998 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- inetd.conf
|
2008-01-28 16:01:43 +01:00
|
|
|
- added new entry for rplay
|
|
|
|
- added entry for proftpd
|
2007-01-16 00:26:46 +01:00
|
|
|
- services:
|
2008-01-28 16:01:43 +01:00
|
|
|
- added aliases for imap2 (imap, imap4)
|
|
|
|
* Thu May 28 1998 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- disabled imap2 in /etc/inetd.conf
|
2008-01-28 16:01:43 +01:00
|
|
|
* Tue Mar 03 1998 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services - changed entry for http-rman to nowait.10000
|
2008-01-28 16:01:43 +01:00
|
|
|
* Sat Feb 28 1998 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services - added entried for radius
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Feb 09 1998 bs@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/services: - added entries for amanda
|
2008-01-28 16:01:43 +01:00
|
|
|
- added entries for ssh
|
2007-01-16 00:26:46 +01:00
|
|
|
- etc/inetd.conf: - added entries for amanda
|
2008-01-28 16:01:43 +01:00
|
|
|
- added "-e" to /usr/sbin/in.identd
|
|
|
|
- added comment for "keep-alive"
|
|
|
|
* Wed Jan 28 1998 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- changed ftpd from in.ftpd to wu.ftpd in /etc/inetd.conf
|
|
|
|
(in case of update with existing in.ftpd and nonexisting
|
|
|
|
wu.ftpd, the administrator is notified of the change)
|
2008-01-28 16:01:43 +01:00
|
|
|
* Mon Jan 26 1998 ro@suse.de
|
2007-01-16 00:26:46 +01:00
|
|
|
- added entries for hp eloquence software 8010,8100,8102,8104
|