Files
bpfire/html/html/index.cgi
Arne Fitzenreiter e66d300a43 WebIF: fix gpl accept redirection for elinks.
elinks doesn't like get a 302 redirection after an other.
2014-01-23 19:21:22 +01:00

30 lines
1.7 KiB
Perl

#!/usr/bin/perl
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2014 IPFire Team <info@ipfire.org #
# #
# 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 3 of the License, 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, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
if (! -e "/var/ipfire/main/gpl_accepted" ) {
print "Status: 302 Moved Temporarily\n";
print "Location: /cgi-bin/gpl.cgi\n\n";
exit (0);
}
print "Status: 302 Moved Temporarily\n";
print "Location: /cgi-bin/index.cgi\n\n";