summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-09-09 16:49:40 +0000
committerMike Frysinger <vapier@gentoo.org>2007-09-09 16:49:40 +0000
commit2aac9fa4644215a6c0612c0f4ac5a0ba862fe729 (patch)
treea4692bd030d30de375ea5cb7fc73b1304e7f62af
parent5420f22a146e4978204daa58a3fae81dc0ecc4b8 (diff)
downloadopenrc-2aac9fa4644215a6c0612c0f4ac5a0ba862fe729.tar.gz
openrc-2aac9fa4644215a6c0612c0f4ac5a0ba862fe729.tar.bz2
openrc-2aac9fa4644215a6c0612c0f4ac5a0ba862fe729.tar.xz
revert EARLY_MOUNTS since everything in the boot runlevel depends on localmount already and anything that runs before it does not rely on things like /tmp or /var/run (and because i confused localmount with checkroot)
-rw-r--r--ChangeLog3
-rw-r--r--conf.d.BSD/localmount4
-rw-r--r--conf.d/localmount7
-rwxr-xr-xinit.d/localmount6
4 files changed, 1 insertions, 19 deletions
diff --git a/ChangeLog b/ChangeLog
index c03c308..ead61b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,9 +6,6 @@
Allow people to specify a list of dirs to clean in bootmisc #191807. Force
the +t bit on /tmp and /var/tmp paths.
- Allow people to specify a list of early mount points which will be mounted
- at the end of localmount so they can do tmpfs on things like /tmp #181527.
-
04 Sep 2007; Roy Marples <uberlord@gentoo.org>:
start-stop-daemon now works with userids correctly when a pidfile
diff --git a/conf.d.BSD/localmount b/conf.d.BSD/localmount
index 4deb27b..2002beb 100644
--- a/conf.d.BSD/localmount
+++ b/conf.d.BSD/localmount
@@ -1,6 +1,4 @@
-
-##############################################################################
-# BSD SPECIFIC OPTIONS
+# /etc/conf.d/localmount
# Kernel core dump options for FreeBSD kernel.
# Unless you're a FreeBSD kernel developer or driver writer then this won't
diff --git a/conf.d/localmount b/conf.d/localmount
deleted file mode 100644
index eae3c21..0000000
--- a/conf.d/localmount
+++ /dev/null
@@ -1,7 +0,0 @@
-# /etc/conf.d/localmount
-
-# A list of mount points you want mounted before any other real
-# services get started. For example, you may want to define /tmp
-# or /var/tmp as tmpfs mounts in your /etc/fstab and then add those
-# two paths here.
-EARLY_MOUNTS=""
diff --git a/init.d/localmount b/init.d/localmount
index 589ee07..06a1979 100755
--- a/init.d/localmount
+++ b/init.d/localmount
@@ -143,12 +143,6 @@ start() {
eend $?
fi
- for x in ${EARLY_MOUNTS} ; do
- ebegin "Early mounting ${x}"
- mount ${x}
- eend $?
- done
-
# Always return 0 - some local mounts may not be critical for boot
return 0
}