blob: 92473579425a5e6d7ce045981a32c2e10e326769 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#!/usr/bin/perl
# Proftpd Config Parser
# Copyright (C) 2002 MandrakeSoft Arnaud Desmons <adesmons@mandrakesoft.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
package Ftpconf;
require "__WIZ_HOME__/common/scripts/Vareqval.pm";
use MDK::Common;
use strict;
sub true_or_false {
my ($val) = @_;
$val eq "0" || $val eq "\'0\'" || $val eq "\"0\"" ||
$val eq "false" || $val eq "\'false\'" || $val eq "\"false\"" and
return 0;
$val eq "1" || $val eq "\'1\'" || $val eq "\"1\"" ||
$val eq "true" || $val eq "\'true\'" || $val eq "\"true\"" and
return 1;
0;
}
sub do_it {
my %mdk = Vareqval->get("/etc/sysconfig/mdk_serv");
$mdk{wiz_ftp_external} = $ENV{wiz_ftp_external} if defined $ENV{wiz_ftp_external} or
die "wiz_ftp_external not defined in env !";
$mdk{wiz_ftp_internal} = $ENV{wiz_ftp_internal} if defined $ENV{wiz_ftp_internal} or
die "wiz_ftp_internal not defined in env !";
$mdk{wiz_ftp_external} = true_or_false($mdk{wiz_ftp_external});
$mdk{wiz_ftp_internal} = $mdk{wiz_ftp_external} ? 1 : true_or_false($mdk{wiz_ftp_internal});
my $wiz_ftp_internal = $mdk{wiz_ftp_internal};
my $wiz_ftp_external = $mdk{wiz_ftp_external};
my $wiz_device = $mdk{wiz_device} if defined $mdk{wiz_device} or
die "wiz_device not in /etc/sysconfig/mdk_serv";
Vareqval->commit("/etc/sysconfig/mdk_serv", \%mdk);
my $file = "/etc/ftphosts";
die "no ftp configuration file found ! warning." if (!-f $file);
MDK::Common::cp_af($file, $file . ".orig");
open(NEW, "> $file") or die "error while opening $file: $!";
my $date = `date`;
print NEW "# host access file
# Everything after a '#' is treated as comment,
# empty lines are ignored
# acces allowed without host restriction done
# by script $date\n";
if ($wiz_ftp_internal && !$wiz_ftp_external) {
my %mdk = Vareqval->get("/etc/sysconfig/network-scripts/ifcfg-".$wiz_device);
my $wiz_ip_net = $mdk{NETWORK} if defined $mdk{NETWORK} or
die "NETWORK not in /etc/sysconfig/network-scripts/ifcfg-".$wiz_device;
($wiz_ip_net) = ($wiz_ip_net =~ /(.*)\..*/);
print NEW "allow * $wiz_ip_net.*\n";
}
elsif (!$wiz_ftp_external) {
print NEW "deny * *\n";
}
system("service xinetd restart");
}
|