Update of /cvsroot/devil-linux/build/scripts/configuration
In directory sc8-pr-cvs1:/tmp/cvs-serv1345/scripts/configuration
Added Files:
nis.config portmap.config tcp_wrappers.config
Log Message:
Added NIS (YP), RPC Portmapper, and tcp_wrappers.
--- NEW FILE: nis.config ---
#!/bin/bash
# $Source: /cvsroot/devil-linux/build/scripts/configuration/nis.config,v $
# $Revision: 1.1 $
# $Date: 2003/10/10 01:32:55 $
#
# http://www.devil-linux.org
[ "$CONFIG_PORTMAP" = "y" ] && [ "$CONFIG_TCP_WRAPPERS" = "y" ] && \
menu_add "Networking|Services" bool "NIS (formerly YP)" CONFIG_NIS
--- NEW FILE: portmap.config ---
#!/bin/bash
# $Source: /cvsroot/devil-linux/build/scripts/configuration/portmap.config,v $
# $Revision: 1.1 $
# $Date: 2003/10/10 01:32:55 $
#
# http://www.devil-linux.org
[ "$CONFIG_TCP_WRAPPERS" = "y" ] && \
menu_add "Networking|Services" bool "RPC Portmapper" CONFIG_PORTMAP
--- NEW FILE: tcp_wrappers.config ---
#!/bin/bash
# $Source: /cvsroot/devil-linux/build/scripts/configuration/tcp_wrappers.config,v $
# $Revision: 1.1 $
# $Date: 2003/10/10 01:32:55 $
#
# http://www.devil-linux.org
menu_add "Networking|Services" bool "TCP Wrappers" CONFIG_TCP_WRAPPERS
|