blob: d217d145d7f31cc6d35f1dc5965e08870b3c85f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package install::interactive; # $Id: interactive.pm 215411 2007-04-25 12:26:16Z pixel $
use diagnostics;
use strict;
use common;
use detect_devices;
use install::steps;
use log;
sub tellAboutProprietaryModules {
my ($o) = @_;
my @l = detect_devices::probe_name('Bad') or return;
$o->ask_warn('', formatAlaTeX(
N("Some hardware on your computer needs ``proprietary'' drivers to work.
You can find some information about them at: %s", join(", ", @l))));
}
sub upNetwork {
my ($o, $b_pppAvoided) = @_;
my $_w = $o->wait_message('', N("Bringing up the network"));
install::steps::upNetwork($o, $b_pppAvoided);
}
sub downNetwork {
my ($o, $b_pppOnly) = @_;
my $_w = $o->wait_message('', N("Bringing down the network"));
install::steps::downNetwork($o, $b_pppOnly);
}
1;
|