mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-25 02:12:58 +02:00
vdr: add menu entry for vdr website
we had discussed this on december telco but it is not so easy because our menusystem only shows entry's existing cgi's. so i add a cgi redirect to http://$ENV{SERVER_ADDR}:3000 this add the entry under pakfire and also to service page. Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org> Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
committed by
Michael Tremer
parent
65c1901411
commit
394405b1dd
5
config/menu/EX-vdr.menu
Normal file
5
config/menu/EX-vdr.menu
Normal file
@@ -0,0 +1,5 @@
|
||||
$subipfire->{'60.vdr'} = {'caption' => VDR,
|
||||
'uri' => '/cgi-bin/vdr.cgi',
|
||||
'title' => VDR,
|
||||
'enabled' => 1,
|
||||
};
|
||||
@@ -122,6 +122,7 @@ var/ipfire/menu.d/70-log.menu
|
||||
#var/ipfire/menu.d/EX-mpfire.menu
|
||||
#var/ipfire/menu.d/EX-samba.menu
|
||||
#var/ipfire/menu.d/EX-tor.menu
|
||||
#var/ipfire/menu.d/EX-vdr.menu
|
||||
#var/ipfire/menu.d/EX-wio.menu
|
||||
#var/ipfire/menu.d/EX-wlanap.menu
|
||||
var/ipfire/modem
|
||||
|
||||
@@ -80,6 +80,7 @@ srv/web/ipfire/cgi-bin/time.cgi
|
||||
srv/web/ipfire/cgi-bin/traffic.cgi
|
||||
srv/web/ipfire/cgi-bin/updatexlrator.cgi
|
||||
srv/web/ipfire/cgi-bin/urlfilter.cgi
|
||||
#srv/web/ipfire/cgi-bin/vdr.cgi
|
||||
srv/web/ipfire/cgi-bin/vpnmain.cgi
|
||||
srv/web/ipfire/cgi-bin/vulnerabilities.cgi
|
||||
srv/web/ipfire/cgi-bin/wakeonlan.cgi
|
||||
|
||||
@@ -87,3 +87,5 @@ usr/share/vdr
|
||||
var/cache/vdr
|
||||
var/ipfire/backup/addons/includes/vdr
|
||||
#var/video
|
||||
srv/web/ipfire/cgi-bin/vdr.cgi
|
||||
var/ipfire/menu.d/EX-vdr.menu
|
||||
|
||||
25
html/cgi-bin/vdr.cgi
Normal file
25
html/cgi-bin/vdr.cgi
Normal file
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/perl
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007-2024 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/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
print "Status: 302 Moved Temporarily\n";
|
||||
print "Location: http://$ENV{SERVER_ADDR}:3000\n\n";
|
||||
|
||||
exit (0);
|
||||
Reference in New Issue
Block a user