aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2012-06-08 10:09:31 -0400
committerDave Reisner <dreisner@archlinux.org>2012-06-08 10:09:31 -0400
commit2b88be43076a5e3019da62b3b188d3f061b105ea (patch)
treeeaee0b5efaab6247010fac4b4e3a607caac2c211 /functions
parent6bd9bf8f66ae68ab3be48577ca223d0f47947512 (diff)
downloadinitscripts-2b88be43076a5e3019da62b3b188d3f061b105ea.tar.xz
remove checks for /var/run and /var/lock as symlinks
These are shipped as symlinks by filesystem 2012.06, so these checks are no longer needed. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'functions')
-rw-r--r--functions9
1 files changed, 0 insertions, 9 deletions
diff --git a/functions b/functions
index 735f75f..4a8ba7b 100644
--- a/functions
+++ b/functions
@@ -590,15 +590,6 @@ umount_all() {
remove_leftover() {
status -v 'Removing Leftover Files' systemd-tmpfiles --create --remove
- # move from static /var/{run,lock} to /run
- if [[ ! -L /var/lock ]]; then
- rm -rf /var/lock
- ln -s /run/lock /var/lock
- fi
- if [[ ! -L /var/run ]]; then
- rm -rf /var/run
- ln -s /run /var/run
- fi
}
bootlogd_stop() {