summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2000-11-06 13:07:20 +0000
committerdamien <damien@mandriva.com>2000-11-06 13:07:20 +0000
commit8a3f9c5e0275aa2ffd5627cb35cc78df904b008c (patch)
treeaecc1a4b88e0b01d96509e57d7c63f494720a790 /perl-install
parent16ebbad62c47588e68f5e41bbaae94311587e465 (diff)
downloaddrakx-backup-do-not-use-8a3f9c5e0275aa2ffd5627cb35cc78df904b008c.tar
drakx-backup-do-not-use-8a3f9c5e0275aa2ffd5627cb35cc78df904b008c.tar.gz
drakx-backup-do-not-use-8a3f9c5e0275aa2ffd5627cb35cc78df904b008c.tar.bz2
drakx-backup-do-not-use-8a3f9c5e0275aa2ffd5627cb35cc78df904b008c.tar.xz
drakx-backup-do-not-use-8a3f9c5e0275aa2ffd5627cb35cc78df904b008c.zip
configureNetwork2 commented.
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/network.pm25
1 files changed, 25 insertions, 0 deletions
diff --git a/perl-install/network.pm b/perl-install/network.pm
index 1e54c4e32..126bb00fc 100644
--- a/perl-install/network.pm
+++ b/perl-install/network.pm
@@ -383,6 +383,31 @@ sub read_all_conf {
}
}
+#- configureNetwork2 : configure the network interfaces.
+#- input
+#- $prefix
+#- $netc
+#- $intf
+#- $install : a function that takes a list of package and install them : ex sub { system("urpmi --auto --best-output " . join(' ', @_)); }
+#- $netc input
+#- NETWORKING : networking flag : string : "yes" by default
+#- FORWARD_IPV4 : forward IP flag : string : "false" by default
+#- HOSTNAME : hostname : string : "localhost.localdomain" by default
+#- DOMAINNAME : domainname : string : $netc->{HOSTNAME} =~ /\.(.*)/ by default
+#- DOMAINNAME2 : well it's another domainname : have to look further why we used 2
+#- The following are facultatives
+#- DHCP_HOSTNAME : If you have a dhcp and want to set the hostname
+#- GATEWAY : gateway
+#- GATEWAYDEV : gateway interface
+#- NISDOMAIN : nis domain
+#- $netc->{dnsServer} : dns server 1
+#- $netc->{dnsServer2} : dns server 2
+#- $netc->{dnsServer3} : dns server 3 : note that we uses the dns1 for the LAN, and the 2 others for the internet conx
+#- $intf input: for each $device (for example ethx)
+#- $intf->{$device}{IPADDR} : IP address
+#- $intf->{$device}{NETMASK} : netmask
+#- $intf->{$device}{DEVICE} : DEVICE = $device
+#- $intf->{$device}{BOOTPROTO} : boot prototype : "bootp" or "dhcp" or "pump" or ...
sub configureNetwork2 {
my ($prefix, $netc, $intf, $install) = @_;
my $etc = "$prefix/etc";