[master 1/3] restart-anaconda: no need to redownload the updates.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Now when the method is called so early in loader the updates are
downloaded as a part of the normal process. Doing otherwise in fact
triggers rhbz#698202 (a rather convoluted NM problem) and we end up stuck
in loader trying to bring up network.

Related: rhbz#698202
---
 loader/loader.c |   16 +++++-----------
 1 files changed, 5 insertions(+), 11 deletions(-)

diff --git a/loader/loader.c b/loader/loader.c
index 1726dc0..041c9e8 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -1777,7 +1777,7 @@ void loaderUsrXHandler(int signum) {
     init_sig = signum;
 }
 
-void restart_anaconda(struct loaderData_s *loaderData) {
+void restart_anaconda() {
     if (access("/tmp/restart_anaconda", R_OK))
         return;
 
@@ -1787,15 +1787,9 @@ void restart_anaconda(struct loaderData_s *loaderData) {
     if (!access("/var/run/loader.run", R_OK))
         unlink("/var/run/loader.run");
 
-    if (loaderData && loaderData->updatessrc) {
-        int updates_fd = open("/tmp/updates", O_RDONLY);
-        if (recursiveRemove(updates_fd))
-            fprintf(stderr, "Error removing /tmp/updates. Updates won't be re-downloaded.");
-        else
-            loadUpdatesFromRemote(loaderData->updatessrc, loaderData);
-    }
-
-    return;
+    int updates_fd = open("/tmp/updates", O_RDONLY);
+    if (recursiveRemove(updates_fd))
+        fprintf(stderr, "Error removing /tmp/updates. Updates won't be re-downloaded.");
 }
 
 static int anaconda_trace_init(int isDevelMode) {
@@ -2015,7 +2009,7 @@ int main(int argc, char ** argv) {
     /* If the anaconda process is now being restarted, we need to do some
      * environment cleanup first.
      */
-    restart_anaconda(&loaderData);
+    restart_anaconda();
 
     if (!access("/var/run/loader.run", R_OK)) {
         printf(_("loader has already been run.  Starting shell.\n"));
-- 
1.7.3.3

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list


[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux