diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-06-08 10:09:31 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-06-08 10:09:31 -0400 |
commit | 2b88be43076a5e3019da62b3b188d3f061b105ea (patch) | |
tree | eaee0b5efaab6247010fac4b4e3a607caac2c211 /functions | |
parent | 6bd9bf8f66ae68ab3be48577ca223d0f47947512 (diff) |
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-- | functions | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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() { |