[arch-commits] CVS update of arch/build/base/filesystem (6 files)

Aaron Griffin aaron at archlinux.org
Sun May 13 06:25:14 UTC 2007


    Date: Sunday, May 13, 2007 @ 02:25:14
  Author: aaron
    Path: /home/cvs-arch/arch/build/base/filesystem

   Added: protocols (1.1) services (1.1)
Modified: PKGBUILD (1.80 -> 1.81)
 Removed: bashrc (1.2) xinitrc (1.1) xsession (1.1)

upgpkg: filesystem 0.8-6
Move bashrc/bash_profile and xsession/xinitrc skel files to relevant package
Also added services and protocols from the iputils package, updated from NetBSD


-----------+
 PKGBUILD  |   41 ++----
 bashrc    |    3 
 protocols |  147 ++++++++++++++++++++++
 services  |  384 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 xinitrc   |   13 --
 xsession  |   10 -
 6 files changed, 549 insertions(+), 49 deletions(-)


Index: arch/build/base/filesystem/PKGBUILD
diff -u arch/build/base/filesystem/PKGBUILD:1.80 arch/build/base/filesystem/PKGBUILD:1.81
--- arch/build/base/filesystem/PKGBUILD:1.80	Sat May 12 15:03:08 2007
+++ arch/build/base/filesystem/PKGBUILD	Sun May 13 02:25:14 2007
@@ -1,20 +1,22 @@
-# $Id: PKGBUILD,v 1.80 2007/05/12 19:03:08 thomas Exp $
+# $Id: PKGBUILD,v 1.81 2007/05/13 06:25:14 aaron Exp $
 # Maintainer: judd <jvinet at zeroflux.org>
+
 pkgname=filesystem
+# TODO snapshot version? 2007.05 ?
 pkgver=0.8
-pkgrel=5
+pkgrel=6
 pkgdesc="Base filesystem"
 arch=(i686 x86_64)
+license=('GPL')
 url="http://www.archlinux.org"
 install=filesystem.install
 depends=('bash' 'coreutils')
 backup=(etc/fstab etc/crypttab etc/group etc/hosts etc/ld.so.conf etc/passwd \
         etc/shadow etc/gshadow etc/resolv.conf etc/motd etc/nsswitch.conf \
-        etc/shells etc/host.conf etc/skel/.bashrc etc/skel/.bash_profile \
-        etc/skel/.xinitrc root/.bashrc root/.bash_profile)
+        etc/shells etc/host.conf)
 source=(group issue nsswitch.conf securetty host.conf ld.so.conf \
         passwd shadow fstab crypttab hosts motd resolv.conf shells \
-	xinitrc xsession bashrc gshadow)
+        gshadow services protocols)
 md5sums=('dbef652b041b5b492da0724e606f268c'
          'af93d7d7725a0c18e0418d4bd5299bef'
          '775464ba7588b4976e0c2a02b83123f4'
@@ -29,27 +31,24 @@
          'd41d8cd98f00b204e9800998ecf8427e'
          '6f48288b6fcaf0065fcb7b0e525413e0'
          '22518e922891f9359f971f4f5b4e793c'
-         'c984f45a636386408ecc505a343907ab'
-         '7873d97db30d6c279ed37e3559e7c59d'
-         '9451109f3fe09d6381cbf36de9fbf06f'
-         'ffdf350b692604518c3c37248e7009ff')
-
-# Hint: new groups
-# By adding new groups to group add it to gshadow also 
-# else warnings will appear by shadow package
+         'ffdf350b692604518c3c37248e7009ff'
+         'd546c1eaab6b990b739cb9f918be4bd4'
+         'b32c83ae6886e0525995f7028b2c2967')
 
-build() {
+build()
+{
   cd $startdir/pkg
-  mkdir -p bin boot dev etc home lib mnt proc root sbin tmp usr var opt sys
+  mkdir -p bin boot dev etc home lib mnt proc root sbin tmp usr var opt srv sys
   mkdir -p mnt/{fl,cd,dvd}
   mkdir -p usr/{bin,include,lib,sbin,share/misc,src,man}
   mkdir -p usr/man/man{1,2,3,4,5,6,7,8}
   ln -s man3 $startdir/pkg/usr/man/man3x
-  # fhs compliancy
+
+  # fhs compliance
   mkdir -p usr/local/{bin,games,include,lib,man,sbin,share,src}
   mkdir -p var/{cache/man,lib/pacman,abs,local,lock,opt,run,spool/mail,tmp,games}
   mkdir -p var/log/old
-  mkdir -p etc/profile.d
+  mkdir -p etc/{skel,profile.d}
   mkdir -p home/ftp lib/modules
   (cd $startdir/pkg/usr; ln -s ../var var)
   (cd $startdir/pkg/var; ln -s spool/mail mail)
@@ -66,16 +65,12 @@
 
   cd $startdir/src
   cp fstab crypttab group host.conf hosts issue ld.so.conf motd nsswitch.conf \
-    passwd resolv.conf securetty shadow shells $startdir/pkg/etc/
+    passwd protocols resolv.conf securetty services shadow shells \
+    $startdir/pkg/etc/
   install -m 600 $startdir/src/gshadow $startdir/pkg/etc/gshadow
   chmod 600 $startdir/pkg/etc/shadow
   chmod 600 $startdir/pkg/etc/crypttab
 
-  install -D -m644 bashrc $startdir/pkg/etc/skel/.bashrc
-  echo ". \$HOME/.bashrc" >$startdir/pkg/etc/skel/.bash_profile
-  install -D -m755 xinitrc $startdir/pkg/etc/skel/.xinitrc
-  install -D -m755 xsession $startdir/pkg/etc/skel/.xsession
-
   # no version any more
   #cat issue | sed "s/#VERSION#/$pkgver/" >$startdir/pkg/etc/issue
   
Index: arch/build/base/filesystem/bashrc
diff -u arch/build/base/filesystem/bashrc:1.2 arch/build/base/filesystem/bashrc:removed
--- arch/build/base/filesystem/bashrc:1.2	Fri Aug  4 01:41:28 2006
+++ arch/build/base/filesystem/bashrc	Sun May 13 02:25:14 2007
@@ -1,3 +0,0 @@
-alias ls='ls --color=auto'
-PS1='[\u@\h \W]\$ '
-
Index: arch/build/base/filesystem/protocols
diff -u /dev/null arch/build/base/filesystem/protocols:1.1
--- /dev/null	Sun May 13 02:25:14 2007
+++ arch/build/base/filesystem/protocols	Sun May 13 02:25:14 2007
@@ -0,0 +1,147 @@
+#	$NetBSD: protocols,v 1.12.4.1 2006/12/02 12:58:19 bouyer Exp $
+#
+# Internet (IP) protocols
+#
+#	originally from: @(#)protocols	8.1 (Berkeley) 6/9/93
+#	see http://www.iana.org/assignments/protocol-numbers
+#
+ip	0	IP		# internet protocol, pseudo protocol number
+icmp	1	ICMP		# internet control message protocol
+igmp	2	IGMP		# internet group management protocol
+ggp	3	GGP		# gateway-gateway protocol
+ipencap	4	IP-ENCAP	# IP encapsulated in IP (officially ``IP'')
+st	5	ST		# ST datagram mode
+tcp	6	TCP		# transmission control protocol
+cbt	7	CBT
+egp	8	EGP		# exterior gateway protocol
+igp	9	IGP		# any private interior gateway protocol
+bbn-rcc-mon	10	BBN-RCC-MON	# BBN RCC Monitoring
+nvp-ii	11	NVP-II		# Network Voice Protocol
+pup	12	PUP		# PARC universal packet protocol
+argus	13	ARGUS
+emcon	14	EMCON
+xnet	15	XNET		# Cross net debugger
+chaos	16	CHAOS		# Chaos
+udp	17	UDP		# user datagram protocol
+mux	18	MUX		# Multiplexing
+dcn-meas	19	DCN-MEAS	# DCN Measurement Subsystems
+hmp	20	HMP		# host monitoring protocol
+prm	21	PRM		# Packet Radio Measurement
+xns-idp	22	XNS-IDP		# Xerox NS IDP
+trunk-1	23	TRUNK-1
+trunk-2	24	TRUNK-2
+leaf-1	25	LEAF-1
+leaf-2	26	LEAF-2
+rdp	27	RDP		# reliable data protocol
+irtp	28	IRTP		# Internet Reliable Transaction
+iso-tp4	29	ISO-TP4		# ISO Transport Protocol Class 4
+netblt	30	NETBLT		# Bulk Data Transfer Protocol
+mfe-nsp	31	MFE-NSP		# MFE Network Services Protocol
+merit-inp	32	MERIT-INP	# MERIT Internodal Protocol
+sep	33	SEP		# Sequential Exchange Protocol
+3pc	34	3PC		# Third Party Connect Protocol
+idpr	35	IDPR		# Inter-Domain Policy Routing Protocol
+xtp	36	XTP		# Xpress Transfer Protocol
+ddp	37	DDP		# Datagram Delivery Protocol
+idpr-cmtp	38	IDPR-CMTP	# IDPR Control Message Transport
+tp++	39	TP++		# TP++ Transport Protocol
+il	40	IL		# IL Transport Protocol
+ipv6	41	IPv6		# Internet Protocol, version 6
+sdrp	42	SDRP		# Source Demand Routing Protocol
+ipv6-route	43	IPv6-Route	# Routing Header for IPv6
+ipv6-frag	44	IPv6-Frag	# Fragment Header for IPv6
+idrp	45	IDRP		# Inter-Domain Routing Protocol
+rsvp	46	RSVP		# Resource ReSerVation Protocol
+gre	47	GRE		# General Routing Encapsulation
+mhrp	48	MHRP		# Mobile Host Routing Protocol
+bna	49	BNA
+esp	50	ESP		# Encapsulating Security Payload
+ah	51	AH		# Authentication Header
+i-nlsp	52	I-NLSP		# Integrated Net Layer Security
+swipe	53	SWIPE		# IP with Encryption
+narp	54	NARP		# NBMA Address Resolution Protocol
+mobile	55	MOBILE		# IP Mobility (IP tunneling)
+tlsp	56	TLSP		# Transport Layer Security Protocol
+skip	57	SKIP
+ipv6-icmp	58	IPv6-ICMP icmp6	# ICMP version 6
+ipv6-nonxt	59	IPv6-NoNxt	# No Next Header for IPv6
+ipv6-opts	60	IPv6-Opts	# Destination Options for IPv6
+#	61			# any host internal protocol
+cftp	62	CFTP		# CFTP
+#	63			# any local network
+sat-expak	64	SAT-expak	#  SATNET and Backroom EXPAK
+kryptolan	65	KRYPTOLAN	# Kryptolan
+rvd	66	RVD		# MIT Remote Virtual Disk Protocol
+ippc	67	IPPC		# Internet Pluribus Packet Core
+#	68			# any distributed file system
+sat-mon	69	SAT-MON		# SATNET Monitoring
+visa	70	VISA		# VISA Protocol
+ipcv	71	IPCV		# Internet Packet Core Utility
+cpnx	72	CPNX		# Computer Protocol Network Executive
+cphb	73	CPHB		# Computer Protocol Heart Beat
+wsn	74	WSN		# Wang Span Network
+pvp	75	PVP		# Packet Video Protocol
+br-sat-mon	76	BR-SAT-MON	# Backroom SATNET Monitoring
+sun-nd	77	SUN-ND		# SUN ND PROTOCOL-Temporary
+wb-mon	78	WB-MON		# WIDEBAND Monitoring
+wb-expak	79	WB-EXPAK	# WIDEBAND EXPAK
+iso-ip	80	ISO-IP		# ISO Internet Protocol
+vmtp	81	VMTP		# Versatile Message Transport
+secure-vmtp	82	SECURE-VMTP	# SECURE-VMTP
+vines	83	VINES
+ttp	84	TTP
+nsfnet-igp	85	NSFNET-IGP
+dgp	86	DGP		# Dissimilar Gateway Protocol
+tcf	87	TCF
+eigrp	88	EIGRP		# Enhanced Inter-Gateway Routing Protocol
+ospf	89	OSPFIGP		# Open Shortest Path First IGP
+sprite-rpc	90	Sprite-RPC	# Sprite RPC Protocol
+larp	91	LARP		# Locus Address Resolution Protocol
+mtp	92	MTP		# Multicast Transport Protocol
+ax.25	93	AX.25		# AX.25 Frames
+ipip	94	IPIP		# Yet Another IP encapsulation
+micp	95	MICP		# Mobile Internetworking Control Pro.
+scc-sp	96	SCC-SP		# Semaphore Communications Sec. Pro.
+etherip	97	ETHERIP		# Ethernet-within-IP Encapsulation
+encap	98	ENCAP		# RFC1241 encapsulation
+#	99			# any private encryption scheme
+gmtp	100	GMTP
+ifmp	101	IFMP		# Ipsilon Flow Management Protocol
+pnni	102	PNNI		# PNNI over IP
+pim	103	PIM		# Protocol Independent Multicast
+aris	104	ARIS
+scps	105	SCPS
+qnx	106	QNX
+a/n	107	A/N		# Active Networks
+ipcomp	108	IPCOMP		# IP Payload Compression Protocol
+snp	109	SNP		# Sitara Networks Protocol
+compaq-peer	110	Compaq-Peer	# Compaq Peer Protocol
+ipx-in-ip	111	IPX-in-IP	# IPX in IP
+carp	112	CARP	vrrp	# Virtual Router Redundancy Protocol
+pgm	113	PGM		# PGM Reliable Transport Protocol
+#	114			# any 0-hop protocol
+l2tp	115	L2TP		# Layer Two Tunneling Protocol
+ddx	116	DDX		# D-II Data Exchange (DDX)
+iatp	117	IATP		# Interactive Agent Transfer Protocol
+stp	118	STP		# Schedule Transfer Protocol
+srp	119	SRP		# SpectraLink Radio Protocol
+uti	120	UTI
+smp	121	SMP		# Simple Message Protocol
+sm	122	SM
+ptp	123	PTP		# Performance Transparency Protocol
+isis	124	ISIS		# IS-IS over IPv4
+fire	125	FIRE
+crtp	126	CRTP		# Combat Radio Transport Protocol
+crudp	127	CRUDP		# Combat Radio User Datagram
+sscopmce	128	SSCOPMCE
+iplt	129	IPLT
+sps	130	SPS		# Secure Packet Shield
+pipe	131	PIPE		# Private IP Encapsulation within IP
+sctp	132	SCTP		# Stream Control Transmission Protocol
+fc	133	FC		# Fibre Channel
+rsvp-e2e-ignore	134	RSVP-E2E-IGNORE
+mobility-header	135	MOBILITY-HEADER	# Mobility Header
+udplite		136	UDPLite
+mpls-in-ip	137     MPLS-in-IP	# MPLS in IP
+#	138-254			# Unassigned
+#	255			# Reserved
Index: arch/build/base/filesystem/services
diff -u /dev/null arch/build/base/filesystem/services:1.1
--- /dev/null	Sun May 13 02:25:14 2007
+++ arch/build/base/filesystem/services	Sun May 13 02:25:14 2007
@@ -0,0 +1,384 @@
+#	$NetBSD: services,v 1.84 2007/02/10 19:39:02 reed Exp $
+#
+# Network services, Internet style
+#
+# Note that it is presently the policy of IANA to assign a single well-known
+# port number for both TCP and UDP; hence, most entries here have two entries
+# even if the protocol doesn't support UDP operations.
+# Updated from RFC 1340, ``Assigned Numbers'' (July 1992).  Not all ports
+# are included, only the more common ones.
+# The latest IANA list is available from:
+#	http://www.iana.org/assignments/port-numbers
+#
+#	from: @(#)services	8.2 (Berkeley) 3/26/95
+#
+tcpmux		1/tcp		# TCP port multiplexer (RFC1078)
+echo		7/tcp
+echo		7/udp
+discard		9/tcp		sink null
+discard		9/udp		sink null
+systat		11/tcp		users
+daytime		13/tcp
+daytime		13/udp
+netstat		15/tcp
+qotd		17/tcp		quote
+msp		18/tcp		# message send protocol
+msp		18/udp
+chargen		19/tcp		ttytst source
+chargen		19/udp		ttytst source
+ftp-data	20/tcp		# default ftp data port
+ftp		21/tcp		# File Transfer Protocol
+ssh		22/tcp		# Secure Shell
+ssh		22/udp
+telnet		23/tcp
+# 24 - private
+smtp		25/tcp		mail
+# 26 - unassigned
+time		37/tcp		timserver
+time		37/udp		timserver
+rlp		39/udp		resource	# resource location
+nameserver	42/tcp		name		# IEN 116
+whois		43/tcp		nicname
+tacacs		49/tcp		# Login Host Protocol (TACACS)
+tacacs		49/udp		# Login Host Protocol (TACACS)
+domain		53/tcp		# name-domain server
+domain		53/udp
+mtp		57/tcp				# deprecated
+bootps		67/tcp		# BOOTP server
+bootps		67/udp
+bootpc		68/tcp		# BOOTP client
+bootpc		68/udp
+tftp		69/udp		# Trivial File Transfer Protocol
+gopher		70/tcp		# Internet Gopher
+gopher		70/udp
+rje		77/tcp		netrjs
+finger		79/tcp
+http		80/tcp		www www-http	# WorldWideWeb HTTP
+http		80/udp		www www-http	# HyperText Transfer Protocol
+link		87/tcp		ttylink
+kerberos	88/tcp		krb5	# Kerberos v5
+kerberos	88/udp
+supdup		95/tcp
+# 100 - reserved
+hostnames	101/tcp		hostname	# usually from sri-nic
+iso-tsap	102/tcp		tsap		# part of ISODE.
+csnet-ns	105/tcp		cso-ns	# also used by CSO name server
+csnet-ns	105/udp		cso-ns
+poppass		106/tcp		poppassd
+rtelnet		107/tcp		# Remote Telnet
+rtelnet		107/udp
+pop2		109/tcp		postoffice	# POP version 2
+pop2		109/udp
+pop3		110/tcp		# POP version 3
+pop3		110/udp
+sunrpc		111/tcp		rpcbind		# Remote Procedure Call
+sunrpc		111/udp		rpcbind
+auth		113/tcp		authentication tap ident
+sftp		115/tcp
+uucp-path	117/tcp
+sqlserv		118/tcp				# SQL Services
+nntp		119/tcp		readnews untp	# USENET News Transfer Protocol
+erpc		121/udp			# Encore Expedited Remote Pro.Call
+ntp		123/tcp
+ntp		123/udp				# Network Time Protocol
+netbios-ns	137/tcp				# NETBIOS Name Service
+netbios-ns	137/udp
+netbios-dgm	138/tcp				# NETBIOS Datagram Service
+netbios-dgm	138/udp
+netbios-ssn	139/tcp				# NETBIOS session service
+netbios-ssn	139/udp
+imap	143/tcp		imap2 imap4	# Internet Message Access Protocol
+imap	143/udp		imap2 imap4
+snmp		161/udp				# Simple Net Mgmt Proto
+snmp-trap	162/udp		snmptrap	# Traps for SNMP
+cmip-man	163/tcp				# ISO mgmt over IP (CMOT)
+cmip-man	163/udp
+cmip-agent	164/tcp
+cmip-agent	164/udp
+mailq		174/tcp				# zmailer MTA
+xdmcp		177/tcp				# X Display Mgr. Control Proto
+xdmcp		177/udp
+nextstep	178/tcp		NeXTStep NextStep	# NeXTStep window
+nextstep	178/udp		NeXTStep NextStep	# server
+bgp		179/tcp				# Border Gateway Proto.
+bgp		179/udp
+prospero	191/tcp				# Cliff Neuman's Prospero
+prospero	191/udp
+irc		194/tcp				# Internet Relay Chat
+irc		194/udp
+smux		199/tcp				# SNMP Unix Multiplexer
+smux		199/udp
+at-rtmp		201/tcp				# AppleTalk routing
+at-rtmp		201/udp
+at-nbp		202/tcp				# AppleTalk name binding
+at-nbp		202/udp
+at-echo		204/tcp				# AppleTalk echo
+at-echo		204/udp
+at-zis		206/tcp				# AppleTalk zone information
+at-zis		206/udp
+z3950		210/tcp		wais		# NISO Z39.50 database
+z3950		210/udp		wais
+ipx		213/tcp				# IPX
+ipx		213/udp
+imap3		220/tcp				# Interactive Mail Access
+imap3		220/udp				# Protocol v3
+rsh-spx		222/tcp				# Berkeley rshd with SPX auth
+ulistserv	372/tcp				# UNIX Listserv
+ulistserv	372/udp
+nip		376/tcp				# Amiga Envoy Net Inquiry Prot.
+nip		376/udp				# Amiga Envoy Net Inquiry Prot.
+ldap		389/tcp			# Lightweight Directory Access Protocol
+ldap		389/udp			# Lightweight Directory Access Protocol
+imsp		406/tcp			# Interactive Mail Support Protocol
+imsp		406/udp			# Interactive Mail Support Protocol
+microsoft-ds	445/tcp			# Microsoft-DS
+microsoft-ds	445/udp			# Microsoft-DS
+isakmp		500/tcp			# IPsec Key Management (ISAKMP/Oakley)
+isakmp		500/udp			# IPsec Key Management (ISAKMP/Oakley)
+ripng		521/tcp			# RIP for IPv6
+ripng		521/udp			# RIP for IPv6
+submission	587/tcp			# Message Submission
+submission	587/udp			# Message Submission
+acap		674/tcp		# Application Configuration Access Protocol
+acap		674/udp		# Application Configuration Access Protocol
+silc		706/tcp			# Secure Internet Live Conferencing
+silc		706/udp			# Secure Internet Live Conferencing
+iscsi-rfc	860/tcp			# RFC port used by iSCSI targets
+
+#
+# UNIX specific services
+#
+exec		512/tcp				# Remote execution
+biff		512/udp		comsat		# Biff the dog
+login		513/tcp				# Remote login
+who		513/udp		whod		# Remote who
+shell		514/tcp		cmd		# Remote command shell
+syslog		514/udp				# System logger
+printer		515/tcp		spooler		# line printer spooler
+talk		517/udp				# Talk protocols
+ntalk		518/udp
+route		520/udp		router routed	# RIP
+timed		525/udp		timeserver
+tempo		526/tcp		newdate
+courier		530/tcp		rpc
+conference	531/tcp		chat
+netnews		532/tcp
+netwall		533/udp				# -for emergency broadcasts
+uucp		540/tcp		uucpd		# uucp daemon
+rdist		541/tcp		rdistd		# rdist daemon
+afpovertcp	548/tcp				# AppleshareIP protocol
+afpovertcp	548/udp				# AppleshareIP protocol
+remotefs	556/tcp		rfs_server rfs	# Brunhoff remote filesystem
+#
+webster		765/tcp				# Network dictionary
+webster		765/udp
+rsync		873/tcp				# rsync
+rsync		873/udp				# rsync
+
+#
+# Various SSL services
+#
+https		443/tcp			# http protocol over TLS/SSL
+https		443/udp			# http protocol over TLS/SSL
+smtps		465/tcp			# smtp protocol over TLS/SSL
+smtps		465/udp			# smtp protocol over TLS/SSL
+nntps		563/tcp			# nntp protocol over TLS/SSL (was snntp)
+nntps		563/udp			# nntp protocol over TLS/SSL (was snntp)
+ldaps		636/tcp			# ldap protocol over TLS/SSL (was sldap)
+ldaps		636/udp			# ldap protocol over TLS/SSL (was sldap)
+ftps-data	989/tcp			# ftp protocol, data, over TLS/SSL
+ftps-data	989/udp			# ftp protocol, data, over TLS/SSL
+ftps		990/tcp			# ftp protocol, control, over TLS/SSL
+ftps		990/udp			# ftp protocol, control, over TLS/SSL
+telnets		992/tcp			# telnet protocol over TLS/SSL
+telnets		992/udp			# telnet protocol over TLS/SSL
+imaps		993/tcp			# imap4 protocol over TLS/SSL
+imaps		993/udp			# imap4 protocol over TLS/SSL
+ircs		994/tcp			# irc protocol over TLS/SSL
+ircs		994/udp			# irc protocol over TLS/SSL
+pop3s		995/tcp			# pop3 protocol over TLS/SSL (was spop3)
+pop3s		995/udp			# pop3 protocol over TLS/SSL (was spop3)
+
+#
+# From ``Assigned Numbers'':
+#
+#> The Registered Ports are not controlled by the IANA and on most systems
+#> can be used by ordinary user processes or programs executed by ordinary
+#> users.
+#
+#> Ports are used in the TCP [45,106] to name the ends of logical
+#> connections which carry long term conversations.  For the purpose of
+#> providing services to unknown callers, a service contact port is
+#> defined.  This list specifies the port used by the server process as its
+#> contact port.  While the IANA can not control uses of these ports it
+#> does register or list uses of these ports as a convenience to the
+#> community.
+#
+ingreslock	1524/tcp
+ingreslock	1524/udp
+prospero-np	1525/tcp		# Prospero non-privileged
+prospero-np	1525/udp
+radius		1812/tcp
+radius		1812/udp
+radius-acct	1813/tcp		radacct
+radius-acct	1813/udp		radacct
+cvspserver	2401/tcp
+cvspserver	2401/udp
+isns		3205/tcp		# iSNS server port
+isns		3205/udp		# iSNS server port
+iscsi		3260/tcp		# Draft port used by iSCSI targets
+					# Will be moved to 860 after RFC
+					# is published
+iscsi-target	3260/tcp		# Draft port used by iSCSI targets
+mysql		3306/tcp		# MySQL
+mysql		3306/udp		# MySQL
+svn		3690/tcp		# Subversion
+svn		3690/udp		# Subversion
+rfe		5002/tcp		# Radio Free Ethernet
+rfe		5002/udp		# Actually uses UDP only
+sip		5060/tcp		# SIP
+sip		5060/udp		# SIP
+postgresql	5432/tcp		# PostgreSQL Database
+postgresql	5432/udp		# PostgreSQL Database
+
+#
+# Kerberos (Project Athena/MIT) services
+# (note that kerberos @ port 88 is sorted in the list above)
+#
+kpasswd		464/udp			# Kerberos password changing protocol
+kpasswd		464/tcp			# Kerberos password changing protocol
+klogin		543/tcp			# Kerberos `rlogin'
+kshell		544/tcp		krcmd	# Kerberos `rsh'
+ekshell		545/tcp			# Encrypted kshell
+kerberos-adm	749/tcp			# Kerberos `kadmin' (v5)
+kerberos-iv	750/udp		kdc kerberos4	# Kerberos (server) udp
+kerberos-iv	750/tcp		kdc kerberos4	# Kerberos (server) tcp
+kerberos-master	751/udp			# Kerberos admin server udp
+kerberos-master	751/tcp			# Kerberos admin server tcp
+hprop		754/tcp			# Heimdal KDC database propagation
+krbupdate	760/tcp		kreg	# BSD Kerberos registration
+kpwd		761/tcp			# old BSD Kerberos `passwd'
+					# (formerly `kpasswd')
+kpop		1109/tcp		# Kerberos POP server
+eklogin		2105/tcp		# Kerberos encrypted `rlogin'
+ekshell2	2106/tcp		# Encrypted kshell - UColorado, Boulder
+krb524		4444/udp		# krb5 -> krb4 ticket conversion
+
+#
+# AFS services
+#
+# IANA has these registered as both UDP and TCP, but only the UDP
+# ports are used by the protocol
+#
+afs3-fileserver 7000/tcp		# file server itself
+afs3-fileserver 7000/udp		# file server itself
+afs3-callback	7001/tcp		# callbacks to cache managers
+afs3-callback	7001/udp		# callbacks to cache managers
+afs3-prserver	7002/tcp		# users & groups database
+afs3-prserver	7002/udp		# users & groups database
+afs3-vlserver	7003/tcp		# volume location database
+afs3-vlserver	7003/udp		# volume location database
+afs3-kaserver	7004/tcp		# AFS/Kerberos authentication service
+afs3-kaserver	7004/udp		# AFS/Kerberos authentication service
+afs3-volser	7005/tcp		# volume management server
+afs3-volser	7005/udp		# volume management server
+afs3-errors	7006/tcp		# error interpretation service
+afs3-errors	7006/udp		# error interpretation service
+afs3-bos	7007/tcp		# basic overseer process
+afs3-bos	7007/udp		# basic overseer process
+afs3-update	7008/tcp		# server-to-server updater
+afs3-update	7008/udp		# server-to-server updater
+afs3-rmtsys	7009/tcp		# remote cache manager service
+afs3-rmtsys	7009/udp		# remote cache manager service
+afs3-resserver	7010/tcp		# MR-AFS residence server
+afs3-resserver	7010/udp		# MR-AFS residence server
+afs3-remio	7011/tcp		# MR-AFS remote IO server
+afs3-remio	7011/udp		# MR-AFS remote IO server
+
+#
+# Unofficial but necessary (for NetBSD) services
+#
+supfilesrv	871/tcp			# SUP server
+supfiledbg	1127/tcp		# SUP debugging
+
+#
+# other common ports
+#
+swat		901/tcp			# Samba Web Administration Tool
+sieve		2000/tcp		# RFC3028
+lmtp		2003/tcp		# Local Mail Transfer Protocol
+nfs		2049/udp	nfsd	# Sun NFS
+nfs		2049/tcp	nfsd	# Sun NFS
+suucp		4031/tcp		# UUCP over SSL
+suucp		4031/udp		# UUCP over SSL
+fud		4201/udp		# Cyrus IMAP finger-like service
+X11		6000/tcp		# X Window System
+ircd		6667/tcp		# Often used IRC port (also see 194)
+sstp-2		9801/tcp		# Sakura Script Transfer Protocol-2
+sstp-2		9801/udp		# Sakura Script Transfer Protocol-2
+amanda		10080/udp		# Amanda
+kamanda		10081/udp		# Amanda with Kerberos
+amandaidx	10082/tcp		# Amanda index server
+amidxtape	10083/tcp		# Amanda dump image server
+italk		12345/tcp		# Italk Chat System
+italk		12345/udp		# Italk Chat System
+hunt		26740/udp		# multi-player/multi-host maze-wars
+
+#
+# Netatalk (in-kernel Appletalk) services
+# Note: The running kernel must be configured with "options NETATALK"
+# and software not included in NetBSD, such as Netatalk version 1.4b2
+# or later, must be used to take advantage of these services.
+#
+rtmp		1/ddp			# Routing Table Maintenance Protocol
+nbp		2/ddp			# Name Binding Protocol
+echo		4/ddp			# AppleTalk Echo Protocol
+zip		6/ddp			# Zone Information Protocol
+
+# Iana registered Coda filesystem port numbers
+rpc2portmap	369/tcp
+rpc2portmap	369/udp			# Coda portmapper
+codaauth2	370/tcp
+codaauth2	370/udp			# Coda authentication server
+
+# Iana registered dict port numbers
+dict		2628/tcp		# DICT
+dict		2628/udp
+
+venus		2430/tcp		# codacon port
+venus		2430/udp		# Venus callback/wbc interface
+venus-se	2431/tcp		# tcp side effects
+venus-se	2431/udp		# udp sftp side effect
+codasrv		2432/tcp		# not used
+codasrv		2432/udp		# server port
+codasrv-se	2433/tcp		# tcp side effects
+codasrv-se	2433/udp		# udp sftp side effect
+
+# Iana registered ports commonly found in security logs
+epmap		135/tcp			# DCE endpoint resolution
+epmap		135/udp			# DCE endpoint resolution
+rtsp		554/tcp			# Real Time Stream Control Protocol
+rtsp		554/udp			# Real Time Stream Control Protocol
+socks		1080/tcp		# Socks
+socks		1080/udp		# Socks
+kazaa		1214/tcp		# KAZAA
+kazaa		1214/udp		# KAZAA
+ms-sql-s	1433/tcp		# Microsoft-SQL-Server
+ms-sql-s	1433/udp		# Microsoft-SQL-Server
+ms-sql-m	1434/tcp		# Microsoft-SQL-Monitor
+ms-sql-m	1434/udp		# Microsoft-SQL-Monitor
+ms-wbt-server	3389/tcp		# MS WBT Server
+ms-wbt-server	3389/udp		# MS WBT Server
+terabase	4000/tcp	icq	# used for both Terabase and ICQ
+terabase	4000/udp	icq	# used for both Terabase and ICQ
+radmin-port	4899/tcp		# RAdmin Port
+radmin-port	4899/udp		# RAdmin Port
+mdns		5353/tcp		# Multicast DNS
+mdns		5353/udp		# Multicast DNS
+http-alt	8080/tcp		# HTTP Alternate (see port 80)
+http-alt	8080/udp		# HTTP Alternate (see port 80)
+
+# Zephyr services
+zephyr-clt      2103/udp                        # Zephyr serv-hm connection
+zephyr-hm       2104/udp                        # Zephyr hostmanager
+zephyr-hm-srv   2105/udp                        # Zephyr hm-serv connection
Index: arch/build/base/filesystem/xinitrc
diff -u arch/build/base/filesystem/xinitrc:1.1 arch/build/base/filesystem/xinitrc:removed
--- arch/build/base/filesystem/xinitrc:1.1	Sat Jul  6 18:54:01 2002
+++ arch/build/base/filesystem/xinitrc	Sun May 13 02:25:14 2007
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-#
-# ~/.xinitrc
-#
-# Executed by startx (run your window manager from here)
-#
-
-exec wmaker
-# exec startkde
-# exec icewm
-# exec blackbox
-# exec fluxbox
Index: arch/build/base/filesystem/xsession
diff -u arch/build/base/filesystem/xsession:1.1 arch/build/base/filesystem/xsession:removed
--- arch/build/base/filesystem/xsession:1.1	Sun Nov 21 20:08:04 2004
+++ arch/build/base/filesystem/xsession	Sun May 13 02:25:14 2007
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-#
-# ~/.xsession
-#
-# Executed by xdm/gdm/kdm at login
-#
-
-/bin/bash --login -i ~/.xinitrc
-




More information about the arch-commits mailing list