Remove redundant files (they are recreated during building from templates

in ../../lang/).
This commit is contained in:
Andrzej Bialecki 1998-10-25 15:48:18 +00:00
parent fa18464999
commit e5eb83d8c3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40646
18 changed files with 10 additions and 279 deletions

View file

@ -1,3 +0,0 @@
# $Id: resolv.conf.pl,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $
domain mydomain.org.pl
nameserver 194.204.159.1

View file

@ -0,0 +1,5 @@
dmesg display kernel message buffer contents
Usage:
dmesg | more

View file

@ -0,0 +1,5 @@
dmesg wyświetl zawartość bufora komunikatów
Sposób użycia:
dmesg | more

View file

@ -1,5 +0,0 @@
# $Id: hosts.pl,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $
# This file should contain the addresses and aliases
# for local hosts that share this file.
127.0.0.1 localhost localhost.mydomain.org.pl
127.0.0.1 pico.mydomain.org.pl

View file

@ -1,12 +0,0 @@
=======================================================
)\_)\
PicoBSD 0.42 (ISP-alpha) (o,o)
__ \~/
Witamy w PicoBSD! -->====\
~~ d d
W glownym katalogu w pliku README znajdziesz pico
krotki opis systemu. Mozesz go obejrzec przy pomocy
"more /README".
Wiecej informacji znajdziesz u autora (abial@nask.pl).

View file

@ -1,62 +0,0 @@
#!/bin/sh
# $Id: rc.pl,v 1.2 1998/09/26 17:27:22 abial Exp $
############################################
### Special setup for one floppy PICOBSD ###
### THIS IS NOT THE NORMAL /etc/rc !!!!! ###
############################################
mount -a -t nonfs
if [ -f /etc/rc.conf ]; then
. /etc/rc.conf
fi
rm -f /var/run/*
if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -b /dev/vn0b ]; then
echo "Dodaje $swapfile jako dodatkowy swap."
vnconfig /dev/vn0b $swapfile && swapon /dev/vn0b
fi
# configure serial devices
if [ -f /etc/rc.serial ]; then
. /etc/rc.serial
fi
# start up the initial network configuration.
if [ -f /etc/rc.network ]; then
. /etc/rc.network
network_pass1
fi
mount -a -t nfs
# clean up left-over files
(cd /var/run && { cp /dev/null utmp; chmod 644 utmp; })
if [ -n "$network_pass1_done" ]; then
network_pass2
fi
if [ -n "$network_pass2_done" ]; then
network_pass3
fi
if [ "X${inetd_enable}" = X"YES" ]; then
echo "Uruchamiam inetd."; inetd ${inetd_flags}
fi
if [ "X${snmpd_enable}" = X"YES" ]; then
echo "Uruchamiam snmpd."; snmpd ${snmpd_flags}
fi
dev_mkdb
echo ''
if [ "x$swapfile" = "xNO" ]; then
echo "UWAGA: brak swapu!"
echo "Nie uruchamiaj zbyt wielu programow na raz..."
fi
echo ''
echo ''
echo '+------------ PicoBSD 0.42 (ISP) --------------+'
echo '| |'
echo '| Zaloguj sie jako "root" (haslo "setup"). |'
echo '| |'
echo '| Ta wersja PicoBSD w pelni podlega |'
echo '| licencji BSD. Po wiecej szczegolow zajrzyj |'
echo '| na http://www.freebsd.org/~picobsd, lub |'
echo '| skontaktuj sie z autorem. |'
echo '| |'
echo '| abial@nask.pl |'
echo '| |'
echo '+----------------------------------------------+'
exit 0

View file

@ -1,25 +0,0 @@
#!/bin/sh
# $Id: rc.conf.pl,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $
swapfile="NO" # Set to name of swapfile if aux swapfile desired.
### Network configuration sub-section ######################
### Basic network options: ###
hostname="pico.mydomain.org.pl" # Set this!
firewall="NO" # firewall type (see /etc/rc.firewall) or NO
tcp_extensions="NO" # Allow RFC1323 & RFC1644 extensions (or NO).
network_interfaces="lo0" # List of network interfaces (lo0 is loopback).
ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration.
#ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry.
### Network daemons options: ###
inetd_enable="YES" # Run the network daemon dispatcher (or NO)
inetd_flags="" # Optional flags to inetd
snmpd_enable="YES" # Run the SNMP daemon (or NO)
snmpd_flags="-C -c /etc/snmpd.conf" # Optional flags to snmpd
### Network routing options: ###
defaultrouter="NO" # Set to default gateway (or NO).
static_routes="" # Set to static route list (or leave empty).
gateway_enable="NO" # Set to YES if this host will be a gateway.
arpproxy_all="" # replaces obsolete kernel option ARP_PROXYALL.
### Allow local configuration override at the very end here ##
if [ -f /etc/rc.conf.local ]; then
. /etc/rc.conf.local
fi

View file

@ -1,3 +0,0 @@
# $Id: resolv.conf.pl,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $
domain mydomain.org.pl
nameserver 148.81.16.51

View file

@ -1,5 +0,0 @@
# $Id: hosts.pl,v 1.1.1.1 1998/08/27 17:38:43 abial Exp $
# This file should contain the addresses and aliases
# for local hosts that share this file.
127.0.0.1 localhost localhost.mydomain.org.pl
127.0.0.1 pico.mydomain.org.pl

View file

@ -1,12 +0,0 @@
=======================================================
)\_)\
PicoBSD 0.42 (NET) (o,o)
__ \~/
Witamy w PicoBSD! -->====\
~~ d d
W glownym katalogu w pliku README znajdziesz pico
krotki opis systemu. Mozesz go obejrzec przy pomocy
"more /README".
Wiecej informacji znajdziesz u autora (abial@nask.pl).

View file

@ -1,62 +0,0 @@
#!/bin/sh
# $Id: rc.pl,v 1.2 1998/09/26 17:27:24 abial Exp $
############################################
### Special setup for one floppy PICOBSD ###
### THIS IS NOT THE NORMAL /etc/rc !!!!! ###
############################################
mount -a -t nonfs
if [ -f /etc/rc.conf ]; then
. /etc/rc.conf
fi
rm -f /var/run/*
if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -b /dev/vn0b ]; then
echo "Dodaje $swapfile jako dodatkowy swap."
vnconfig /dev/vn0b $swapfile && swapon /dev/vn0b
fi
# configure serial devices
if [ -f /etc/rc.serial ]; then
. /etc/rc.serial
fi
# start up the initial network configuration.
if [ -f /etc/rc.network ]; then
. /etc/rc.network
network_pass1
fi
mount -a -t nfs
# clean up left-over files
(cd /var/run && { cp /dev/null utmp; chmod 644 utmp; })
if [ -n "$network_pass1_done" ]; then
network_pass2
fi
if [ -n "$network_pass2_done" ]; then
network_pass3
fi
if [ "X${inetd_enable}" = X"YES" ]; then
echo "Uruchamiam inetd."; inetd ${inetd_flags}
fi
if [ "X${snmpd_enable}" = X"YES" ]; then
echo "Uruchamiam snmpd."; snmpd ${snmpd_flags}
fi
dev_mkdb
echo ''
if [ "x$swapfile" = "xNO" ]; then
echo "UWAGA: brak swapu!"
echo "Nie uruchamiaj zbyt wielu programow na raz..."
fi
echo ''
echo ''
echo '+------------ PicoBSD 0.42 (NET) --------------+'
echo '| |'
echo '| Zaloguj sie jako "root" (haslo "setup"). |'
echo '| |'
echo '| Ta wersja PicoBSD w pelni podlega |'
echo '| licencji BSD. Po wiecej szczegolow zajrzyj |'
echo '| na http://www.freebsd.org/~picobsd, lub |'
echo '| skontaktuj sie z autorem. |'
echo '| |'
echo '| abial@nask.pl |'
echo '| |'
echo '+----------------------------------------------+'
exit 0

View file

@ -1,25 +0,0 @@
#!/bin/sh
# $Id: rc.conf.pl,v 1.1.1.1 1998/08/27 17:38:43 abial Exp $
swapfile="NO" # Set to name of swapfile if aux swapfile desired.
### Network configuration sub-section ######################
### Basic network options: ###
hostname="pico.mydomain.org.pl" # Set this!
firewall="NO" # firewall type (see /etc/rc.firewall) or NO
tcp_extensions="NO" # Allow RFC1323 & RFC1644 extensions (or NO).
network_interfaces="lo0" # List of network interfaces (lo0 is loopback).
ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration.
#ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry.
### Network daemons options: ###
inetd_enable="YES" # Run the network daemon dispatcher (or NO)
inetd_flags="" # Optional flags to inetd
snmpd_enable="YES" # Run the SNMP daemon (or NO)
snmpd_flags="-C -c /etc/snmpd.conf" # Optional flags to snmpd
### Network routing options: ###
defaultrouter="NO" # Set to default gateway (or NO).
static_routes="" # Set to static route list (or leave empty).
gateway_enable="NO" # Set to YES if this host will be a gateway.
arpproxy_all="" # replaces obsolete kernel option ARP_PROXYALL.
### Allow local configuration override at the very end here ##
if [ -f /etc/rc.conf.local ]; then
. /etc/rc.conf.local
fi

View file

@ -1,3 +0,0 @@
# $Id: resolv.conf.pl,v 1.1.1.1 1998/08/27 17:38:43 abial Exp $
domain mydomain.org.pl
nameserver 148.81.16.51

View file

@ -1,5 +0,0 @@
# $Id: hosts.pl,v 1.1.1.1 1998/08/27 17:38:44 abial Exp $
# This file should contain the addresses and aliases
# for local hosts that share this file.
127.0.0.1 localhost localhost.mydomain.org.pl
127.0.0.1 pico.mydomain.org.pl

View file

@ -1,11 +0,0 @@
=======================================================
)\_)\
PicoBSD 0.42 (ROUTER) (o,o)
__ \~/
Witamy w PicoBSD! -->====\
~~ d d
Dokumentacja systemu znajduje sie na pico
http://www.freebsd.org/~picobsd/.
Wiecej informacji znajdziesz u autora (abial@nask.pl).

View file

@ -1,18 +0,0 @@
#!/bin/sh
# $Id: rc.pl,v 1.2 1998/09/26 17:27:26 abial Exp $
### Special setup for one floppy PICOBSD ###
ifconfig lo0 inet 127.0.0.1 netmask 0xffffff00
hostname pico
echo ""
echo ""
echo '+----------- PicoBSD 0.42 (ROUTER) ------------+'
echo '| |'
echo '| Ta wersja PicoBSD podlega w pelni licencji |'
echo '| BSD. Wiecej informacji mozna znalezc na |'
echo '| http://www.freebsd.org/~picobsd, lub u |'
echo '| autora. |'
echo '| |'
echo '| abial@nask.pl |'
echo '| |'
echo '+----------------------------------------------+'
echo ""

View file

@ -1,25 +0,0 @@
#!/bin/sh
# $Id: rc.conf,v 1.2 1998/08/10 19:17:49 abial Exp $
swapfile="NO" # Set to name of swapfile if aux swapfile desired.
### Network configuration sub-section ######################
### Basic network options: ###
hostname="pico.mydomain.org.pl" # Set this!
firewall="NO" # firewall type (see /etc/rc.firewall) or NO
tcp_extensions="NO" # Allow RFC1323 & RFC1644 extensions (or NO).
network_interfaces="lo0" # List of network interfaces (lo0 is loopback).
ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration.
#ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry.
### Network daemons options: ###
inetd_enable="YES" # Run the network daemon dispatcher (or NO)
inetd_flags="" # Optional flags to inetd
snmpd_enable="YES" # Run the SNMP daemon (or NO)
snmpd_flags="-C -c /etc/snmpd.conf" # Optional flags to snmpd
### Network routing options: ###
defaultrouter="NO" # Set to default gateway (or NO).
static_routes="" # Set to static route list (or leave empty).
gateway_enable="NO" # Set to YES if this host will be a gateway.
arpproxy_all="" # replaces obsolete kernel option ARP_PROXYALL.
### Allow local configuration override at the very end here ##
if [ -f /etc/rc.conf.local ]; then
. /etc/rc.conf.local
fi

View file

@ -1,3 +0,0 @@
# $Id: resolv.conf.pl,v 1.1.1.1 1998/08/27 17:38:44 abial Exp $
domain mydomain.org.pl
nameserver 148.81.16.51