View | Details | Raw Unified | Return to bug 450229
Collapse All | Expand All

(-)inst_ask_online_update.ycp (-1 / +12 lines)
Lines 25-32 Link Here
25
    import "Label";
25
    import "Label";
26
    import "Internet";
26
    import "Internet";
27
    import "Installation";
27
    import "Installation";
28
    import "NetworkService";
28
29
29
    if (!Internet::do_you) return `auto;
30
    // BNC #450229
31
    // There used to be >if (!Internet::do_you)<
32
    if (NetworkService::isNetworkRunning() != true) {
33
	y2milestone ("No network running, skipping online update...");
34
	return `auto;
35
    }
30
36
31
    map ui = UI::GetDisplayInfo();
37
    map ui = UI::GetDisplayInfo();
32
38
Lines 117-122 Link Here
117
        Internet::do_you = false;
123
        Internet::do_you = false;
118
        ret = `next;
124
        ret = `next;
119
    }
125
    }
126
    else
127
    {
128
	// do_you is checked later
129
	Internet::do_you = true;
130
    }
120
131
121
    return (symbol)ret;
132
    return (symbol)ret;
122
}
133
}

Return to bug 450229