chiark / gitweb /
readahead: use Conflicts= instead of masking to get rid of readahead units
[elogind.git] / src / system-update-generator / system-update-generator.c
index d148550e7c93c14a3a61eb86eb54ceb627bc7610..abda5a0190e836892a2f995c5f2776019d67f4ec 100644 (file)
@@ -60,19 +60,6 @@ static int generate_symlink(void) {
 
         free(p);
 
-        /* Also try to disable readahead, but don't try too hard */
-        p = strappend(arg_dest, "/systemd-readahead-collect.service");
-        if (p) {
-                symlink("/dev/null", p);
-                free(p);
-        }
-
-        p = strappend(arg_dest, "/systemd-readahead-replay.service");
-        if (p) {
-                symlink("/dev/null", p);
-                free(p);
-        }
-
         return 0;
 }