diff options
author | Florent Villard <warly@mandriva.com> | 2003-09-15 11:10:22 +0000 |
---|---|---|
committer | Florent Villard <warly@mandriva.com> | 2003-09-15 11:10:22 +0000 |
commit | 724f7a8d02d6cd48b108a8f2cfbb98feeecae2a7 (patch) | |
tree | 2e796bb5e0cb5fb582b6f48563696337b6bea18d /common | |
parent | 5cbe71386657f4f045cbd59137f5e1d702a93292 (diff) | |
download | drakwizard-724f7a8d02d6cd48b108a8f2cfbb98feeecae2a7.tar drakwizard-724f7a8d02d6cd48b108a8f2cfbb98feeecae2a7.tar.gz drakwizard-724f7a8d02d6cd48b108a8f2cfbb98feeecae2a7.tar.bz2 drakwizard-724f7a8d02d6cd48b108a8f2cfbb98feeecae2a7.tar.xz drakwizard-724f7a8d02d6cd48b108a8f2cfbb98feeecae2a7.zip |
fix apache
fix dns_client adding a \n at the end of the line of the configuration file
fix squid
fix inn
fix ftp
fix samba
add a init function in drakwizard.pl for case such as apache which need to initialize some parameters
separate region/country in ntp wizard
Diffstat (limited to 'common')
-rw-r--r-- | common/IFCFG.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/common/IFCFG.pm b/common/IFCFG.pm index 0d0c96b2..81b7f0e5 100644 --- a/common/IFCFG.pm +++ b/common/IFCFG.pm @@ -54,7 +54,7 @@ sub new { bless $self; } -sub is_dhcp { +sub is_dhcp { my $self = shift; my ($itf) = @_; @@ -63,25 +63,25 @@ sub is_dhcp { } #- TODO : return the main interface -sub default_itf { +sub default_itf { "eth0"; } -sub itf_get { +sub itf_get { my $self = shift; my ($key, $itf) = @_; $itf ||= default_itf; - exists $self->{itf}{$itf}{$key} or die "no $key field in $itf hash"; + exists $self->{itf}{$itf}{$key} or print "ERROR: no $key field in $itf hash\n"; $self->{itf}{$itf}{$key} } -sub network_get { +sub network_get { my $self = shift; my ($key) = @_; - exists $self->{network}{$key} or die "no $key field in network hash"; - $self->{network}{$key}; + exists $self->{network}{$key} or print "ERROR: no $key field in network hash\n"; + $self->{network}{$key} } 10; |