diff options
author | Harald Hoyer <harald@redhat.com> | 2013-07-17 11:19:39 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-07-17 11:33:07 +0200 |
commit | 956eaf2b8d6c9999024705ddadc7393bc707de02 (patch) | |
tree | d7a89e741c9e5a3814211cfabe9e00d538cd9ea7 /src/core | |
parent | 69af45035913e7119cffd94c542bd3039600e45d (diff) |
remove /run/initramfs/root-fsck logic
dracut uses systemd in the initramfs and does not write these files
anymore.
The state of the root fsck is serialized.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/mount-setup.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/mount-setup.c b/src/core/mount-setup.c index 4629808a7a..4359f59908 100644 --- a/src/core/mount-setup.c +++ b/src/core/mount-setup.c @@ -350,14 +350,8 @@ static int nftw_cb( }; int mount_setup(bool loaded_policy) { - - static const char relabel[] = - "/run/initramfs/root-fsck\0" - "/run/initramfs/shutdown\0"; - int r; unsigned i; - const char *j; for (i = 0; i < ELEMENTSOF(mount_table); i ++) { r = mount_one(mount_table + i, true); @@ -379,10 +373,6 @@ int mount_setup(bool loaded_policy) { nftw("/dev", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL); nftw("/run", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL); - /* Explicitly relabel these */ - NULSTR_FOREACH(j, relabel) - label_fix(j, true, false); - after_relabel = now(CLOCK_MONOTONIC); log_info("Relabelled /dev and /run in %s.", |