diff options
author | Christian Heim <phreak@gentoo.org> | 2005-09-03 18:06:11 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2005-09-03 18:06:11 +0000 |
commit | d69968234493e35e530524f2d278fb1188074fd9 (patch) | |
tree | 5f1fcc4cca6a279512ad1bdeb63a7a1296a11342 | |
parent | Removing modules related files, since they are completly useless inside a vse... (diff) | |
download | baselayout-vserver-d69968234493e35e530524f2d278fb1188074fd9.tar.gz baselayout-vserver-d69968234493e35e530524f2d278fb1188074fd9.tar.bz2 baselayout-vserver-d69968234493e35e530524f2d278fb1188074fd9.zip |
Removing unneeded files from etc/
svn path=/baselayout-vserver/trunk/; revision=9
-rw-r--r-- | etc/filesystems | 14 | ||||
-rw-r--r-- | etc/fstab | 30 | ||||
-rw-r--r-- | etc/issue.devfix | 21 | ||||
-rw-r--r-- | etc/sysctl.conf | 48 |
4 files changed, 0 insertions, 113 deletions
diff --git a/etc/filesystems b/etc/filesystems deleted file mode 100644 index de172c9..0000000 --- a/etc/filesystems +++ /dev/null @@ -1,14 +0,0 @@ -# /etc/filesystems -# -# This file defines the filesystems search order used by a -# 'mount -t auto' command. -# - -# Uncomment the following line if your modular kernel has vfat -# support and you want mount to try vfat. -#vfat - -# Keep the last '*' intact as it directs mount to use the -# filesystems list available at /proc/filesystems also. -# Don't remove it unless you REALLY knows what you are doing! -* diff --git a/etc/fstab b/etc/fstab deleted file mode 100644 index 64cb8de..0000000 --- a/etc/fstab +++ /dev/null @@ -1,30 +0,0 @@ -# /etc/fstab: static file system information. -# -# noatime turns off atimes for increased performance (atimes normally aren't -# needed; notail increases performance of ReiserFS (at the expense of storage -# efficiency). It's safe to drop the noatime options if you want and to -# switch between notail / tail freely. -# -# The root filesystem should have a pass number of either 0 or 1. -# All other filesystems should have a pass number of 0 or greater than 1. -# -# See the manpage fstab(5) for more information. -# - -# <fs> <mountpoint> <type> <opts> <dump/pass> - -# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts. -/dev/BOOT /boot ext2 noauto,noatime 1 2 -/dev/ROOT / ext3 noatime 0 1 -/dev/SWAP none swap sw 0 0 -/dev/cdroms/cdrom0 /mnt/cdrom iso9660 noauto,ro 0 0 -#/dev/fd0 /mnt/floppy auto noauto 0 0 - -# NOTE: The next line is critical for boot! -proc /proc proc defaults 0 0 - -# glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for -# POSIX shared memory (shm_open, shm_unlink). -# (tmpfs is a dynamically expandable/shrinkable ramdisk, and will -# use almost no memory if not populated with files) -shm /dev/shm tmpfs nodev,nosuid,noexec 0 0 diff --git a/etc/issue.devfix b/etc/issue.devfix deleted file mode 100644 index 163e50f..0000000 --- a/etc/issue.devfix +++ /dev/null @@ -1,21 +0,0 @@ ------------------------------------------------------ -Your system seems to be missing critical device files -in /dev ! Although you may be running udev or devfs, -the root partition is missing these required files ! - -To rectify this situation, please do the following: -mkdir /mnt/fixit -mount --bind / /mnt/fixit -cp -a /dev/* /mnt/fixit/dev/ -umount /mnt/fixit -rmdir /mnt/fixit - -You may refer to these instructions at /etc/issue. -If you previously had an issue file, it has been -backed up at /etc/issue.devfix. Once you've fixed -your system, you will have to restore your old issue -file in order to get rid of this warning. - -Thanks for using Gentoo ! :) -http://bugs.gentoo.org/show_bug.cgi?id=40987 ------------------------------------------------------ diff --git a/etc/sysctl.conf b/etc/sysctl.conf deleted file mode 100644 index 973c6b3..0000000 --- a/etc/sysctl.conf +++ /dev/null @@ -1,48 +0,0 @@ -# /etc/sysctl.conf -# -# For more information on how this file works, please see -# the manpages sysctl(8) and sysctl.conf(5). -# -# In order for this file to work properly, you must first -# enable 'Sysctl support' in the kernel. -# -# Look in /proc/sys/ for all the things you can setup. -# - -# Disables packet forwarding -#net.ipv4.ip_forward = 0 -# Disables IP dynaddr -#net.ipv4.ip_dynaddr = 0 -# Disable ECN -#net.ipv4.tcp_ecn = 0 -# Enables source route verification -net.ipv4.conf.default.rp_filter = 1 -# Enable reverse path -net.ipv4.conf.all.rp_filter = 1 - -# Disable source route -#net.ipv4.conf.all.accept_source_route = 0 -#net.ipv4.conf.default.accept_source_route = 0 - -# Disable redirects -#net.ipv4.conf.all.accept_redirects = 0 -#net.ipv4.conf.default.accept_redirects = 0 - -# Disable secure redirects -#net.ipv4.conf.all.secure_redirects = 0 -#net.ipv4.conf.default.secure_redirects = 0 - -# Ignore ICMP broadcasts -#net.ipv4.icmp_echo_ignore_broadcasts = 1 - -# Disables the magic-sysrq key -#kernel.sysrq = 0 -# When the kernel panics, automatically reboot in 3 seconds -#kernel.panic = 3 -# Allow for more PIDs (cool factor!); may break some programs -#kernel.pid_max = 999999 - -# TCP Port for lock manager -#fs.nfs.nlm_tcpport = 0 -# UDP Port for lock manager -#fs.nfs.nlm_udpport = 0 |