rename to a mor general name

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/genlink@2460 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one
2010-10-03 09:25:35 +00:00
commit 2ec1bbf0be
403 changed files with 32261 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
# Set to the hostname of this machine
hostname="goLSPro"

View File

@@ -0,0 +1,27 @@
# Seq Description Output
# ----------------------------------------------------------------
# ## #
# #B Bogomips 374.37
# #C Compiled Date #47 Fri Jan 8 10:37:09 EST 1999
# #E User Text My Favorite Linux Distribution
# Displayed with -t
# #H Hostname deranged
# #L Load average Load average 0.04, 0.01, 0.01
# #M Megahertz 188Mhz
# where supported
# #N Number of CPU's Two
# #O OS Name Linux
# #P Processor or Processors Processor
# #R Ram 64M
# in Megabytes
# #S Plural s
# #T Type of CPU K6
# #U Uptime Uptime 10 hours 59 minutes
# #V Version of OS 2.2.0-pre5
# #X CPU Vendor AMD
# \\n carriage return
FORMAT="Gentoo #O `cat /etc/gentoo-release | awk '{ print $5,$6 }'`\n#O #V, Compiled #C\n#N #X #T #M CPU#S, #R RAM, #B Bogomips\n#U\n#H / \l \n"
FORMATNET="Gentoo #O `cat /etc/gentoo-release | awk '{ print $5,$6 }'`\n#O #V, Compiled #C\n#N #X #T #M CPU#S, #R RAM, #B Bogomips\n#U\n#H\n"
OPTIONS="-f -u"

View File

@@ -0,0 +1,37 @@
# Here is where you can put anything you need to start
# that there is not an init script for.
local_start() {
# This is a good place to load any misc programs
# on startup (use &>/dev/null to hide output)
# want some kernel debugging over serial console (BREAK)?
#echo 1 > /proc/sys/kernel/sysrq
#echo 9 > /proc/sys/kernel/printk
# Update the filesystem okay flag and delete boot mode trace files
# on /boot to prevent the boot failure counter reach 3 when we
# in fact booted Gentoo ok
date > /boot/rootfs_ok
rm -f /boot/rootfs_booting
rm -f /boot/initrdmode
rm -f /boot/boot.log
touch /boot/hddrootmode
# avoid udev renaming 'eth0' bug by deleting this file:
rm -f /etc/udev/rules.d/70-persistent-net.rules
# We should always return 0
return 0
}
local_stop() {
# This is a good place to unload any misc.
# programs you started above.
# avoid udev renaming 'eth0' bug by deleting this file:
rm -f /etc/udev/rules.d/70-persistent-net.rules
# We should always return 0
return 0
}

View File

@@ -0,0 +1,27 @@
# This blank configuration will automatically use DHCP for any net.*
# scripts in /etc/init.d. To create a more complete configuration,
# please review /usr/share/doc/openrc/net.example and save your configuration
# in /etc/conf.d/net (this file :]!).
#
# DHCP IP / route configuration, with fallback to a static IP / route
#
config_eth1=( "dhcp" )
fallback_eth1=( "192.168.178.103 netmask 255.255.255.0 broadcast 192.168.178.255" )
fallback_route_eth1=( "default via 192.168.178.1" )
#
# pure static IP / route configuration, should the above not work even with fallback..
# (in that case, comment the whole DHCP section and uncomment this one)
#
#config_eth0=( "192.168.178.103 netmask 255.255.255.0 broadcast 192.168.178.255" )
#routes_eth0=( "default via 192.168.178.1" )
#
# DNS configuration
#
dns_servers_eth1="192.168.178.1"