mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-19 23:43:00 +02:00
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into monit
This commit is contained in:
1
config/backup/includes/bacula
Normal file
1
config/backup/includes/bacula
Normal file
@@ -0,0 +1 @@
|
||||
/etc/bacula/
|
||||
1
config/backup/includes/check_mk_agent
Normal file
1
config/backup/includes/check_mk_agent
Normal file
@@ -0,0 +1 @@
|
||||
/etc/check_mk/
|
||||
@@ -26,6 +26,8 @@ $General::swroot = 'CONFIG_ROOT';
|
||||
$General::noipprefix = 'noipg-';
|
||||
$General::adminmanualurl = 'http://wiki.ipfire.org';
|
||||
|
||||
require "${General::swroot}/network-functions.pl";
|
||||
|
||||
#
|
||||
# log ("message") use default 'ipcop' tag
|
||||
# log ("tag","message") use your tag
|
||||
@@ -281,21 +283,10 @@ sub validip
|
||||
}
|
||||
}
|
||||
|
||||
sub validmask
|
||||
{
|
||||
my $mask = $_[0];
|
||||
sub validmask {
|
||||
my $mask = shift;
|
||||
|
||||
# secord part an ip?
|
||||
if (&validip($mask)) {
|
||||
return 1; }
|
||||
# second part a number?
|
||||
if (/^0/) {
|
||||
return 0; }
|
||||
if (!($mask =~ /^\d+$/)) {
|
||||
return 0; }
|
||||
if ($mask >= 0 && $mask <= 32) {
|
||||
return 1; }
|
||||
return 0;
|
||||
return &Network::check_netmask($mask) || &Network::check_prefix($mask);
|
||||
}
|
||||
|
||||
sub validipormask
|
||||
@@ -316,24 +307,12 @@ sub validipormask
|
||||
return &validmask($mask);
|
||||
}
|
||||
|
||||
sub subtocidr
|
||||
{
|
||||
#gets: Subnet in decimal (255.255.255.0)
|
||||
#Gives: 24 (The cidr of network)
|
||||
my ($byte1, $byte2, $byte3, $byte4) = split(/\./, $_[0].".0.0.0.0");
|
||||
my $num = ($byte1 * 16777216) + ($byte2 * 65536) + ($byte3 * 256) + $byte4;
|
||||
my $bin = unpack("B*", pack("N", $num));
|
||||
my $count = ($bin =~ tr/1/1/);
|
||||
return $count;
|
||||
sub subtocidr {
|
||||
return &Network::convert_netmask2prefix(shift);
|
||||
}
|
||||
|
||||
sub cidrtosub
|
||||
{
|
||||
#gets: Cidr of network (20-30 for ccd)
|
||||
#Konverts 30 to 255.255.255.252 e.g
|
||||
my $cidr=$_[0];
|
||||
my $netmask = &Net::IPv4Addr::ipv4_cidr2msk($cidr);
|
||||
return "$netmask";
|
||||
sub cidrtosub {
|
||||
return &Network::convert_prefix2netmask(shift);
|
||||
}
|
||||
|
||||
sub iporsubtodec
|
||||
@@ -408,15 +387,10 @@ sub iporsubtocidr
|
||||
return 3;
|
||||
}
|
||||
|
||||
sub getnetworkip
|
||||
{
|
||||
#Gets: IP, CIDR (10.10.10.0-255, 24)
|
||||
#Gives: 10.10.10.0
|
||||
my ($ccdip,$ccdsubnet) = @_;
|
||||
my $ip_address_binary = &Socket::inet_pton( AF_INET,$ccdip );
|
||||
my $netmask_binary = &Socket::inet_pton(AF_INET,&iporsubtodec($ccdsubnet));
|
||||
my $network_address = &Socket::inet_ntop( AF_INET,$ip_address_binary & $netmask_binary );
|
||||
return $network_address;
|
||||
sub getnetworkip {
|
||||
my $arg = join("/", @_);
|
||||
|
||||
return &Network::get_netaddress($arg);
|
||||
}
|
||||
|
||||
sub getccdbc
|
||||
@@ -431,46 +405,20 @@ sub getccdbc
|
||||
return $broadcast_address;
|
||||
}
|
||||
|
||||
sub ip2dec
|
||||
{
|
||||
my $ip_num;
|
||||
my $ip=$_[0];
|
||||
if ( $ip =~ /(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/ ) {
|
||||
$ip_num = (($1*256**3) + ($2*256**2) + ($3*256) + $4);
|
||||
} else {
|
||||
$ip_num = -1;
|
||||
}
|
||||
$ip_num = (($1*256**3) + ($2*256**2) + ($3*256) + $4);
|
||||
return($ip_num);
|
||||
sub ip2dec {
|
||||
return &Network::ip2bin(shift);
|
||||
}
|
||||
|
||||
sub dec2ip
|
||||
{
|
||||
my $ip;
|
||||
my $ip_num=$_[0];
|
||||
my $o1=$ip_num%256;
|
||||
$ip_num=int($ip_num/256);
|
||||
my $o2=$ip_num%256;
|
||||
$ip_num=int($ip_num/256);
|
||||
my $o3=$ip_num%256;
|
||||
$ip_num=int($ip_num/256);
|
||||
my $o4=$ip_num%256;
|
||||
$ip="$o4.$o3.$o2.$o1";
|
||||
return ($ip);
|
||||
sub dec2ip {
|
||||
return &Network::bin2ip(shift);
|
||||
}
|
||||
|
||||
sub getnextip
|
||||
{
|
||||
my $decip=&ip2dec($_[0]);
|
||||
$decip=$decip+4;
|
||||
return &dec2ip($decip);
|
||||
sub getnextip {
|
||||
return &Network::find_next_ip_address(shift, 4);
|
||||
}
|
||||
|
||||
sub getlastip
|
||||
{
|
||||
my $decip=&ip2dec($_[0]);
|
||||
$decip--;
|
||||
return &dec2ip($decip);
|
||||
sub getlastip {
|
||||
return &Network::find_next_ip_address(shift, -1);
|
||||
}
|
||||
|
||||
sub validipandmask
|
||||
@@ -681,9 +629,8 @@ sub validdomainname
|
||||
my @parts = split (/\./, $domainname); # Split hostname at the '.'
|
||||
|
||||
foreach $part (@parts) {
|
||||
# Each part should be at least two characters in length
|
||||
# but no more than 63 characters
|
||||
if (length ($part) < 2 || length ($part) > 63) {
|
||||
# Each part should be no more than 63 characters in length
|
||||
if (length ($part) < 1 || length ($part) > 63) {
|
||||
return 0;}
|
||||
# Only valid characters are a-z, A-Z, 0-9 and -
|
||||
if ($part !~ /^[a-zA-Z0-9-]*$/) {
|
||||
@@ -766,28 +713,12 @@ sub validportrange # used to check a port range
|
||||
}
|
||||
}
|
||||
|
||||
# Test if IP is within a subnet
|
||||
# Call: IpInSubnet (Addr, Subnet, Subnet Mask)
|
||||
# Subnet can be an IP of the subnet: 10.0.0.0 or 10.0.0.1
|
||||
# Everything in dottted notation
|
||||
# Return: TRUE/FALSE
|
||||
sub IpInSubnet
|
||||
{
|
||||
sub IpInSubnet {
|
||||
my $addr = shift;
|
||||
my $network = shift;
|
||||
my $netmask = shift;
|
||||
|
||||
my $addr_num = &Socket::inet_pton(AF_INET,$addr);
|
||||
my $network_num = &Socket::inet_pton(AF_INET,$network);
|
||||
my $netmask_num = &Socket::inet_pton(AF_INET,$netmask);
|
||||
|
||||
# Find start address
|
||||
my $network_start = $network_num & $netmask_num;
|
||||
|
||||
# Find end address
|
||||
my $network_end = $network_start ^ ~$netmask_num;
|
||||
|
||||
return (($addr_num ge $network_start) && ($addr_num le $network_end));
|
||||
return &Network::ip_address_in_network($addr, "$network/$netmask");
|
||||
}
|
||||
|
||||
#
|
||||
@@ -795,32 +726,25 @@ sub IpInSubnet
|
||||
# Call: NextIP ('1.1.1.1');
|
||||
# Return: '1.1.1.2'
|
||||
#
|
||||
sub NextIP
|
||||
{
|
||||
return &Socket::inet_ntoa( pack("N", 1 + unpack('N', &Socket::inet_aton(shift))
|
||||
)
|
||||
);
|
||||
sub NextIP {
|
||||
return &Network::find_next_ip_address(shift, 1);
|
||||
}
|
||||
sub NextIP2
|
||||
{
|
||||
return &Socket::inet_ntoa( pack("N", 4 + unpack('N', &Socket::inet_aton(shift))
|
||||
)
|
||||
);
|
||||
|
||||
sub NextIP2 {
|
||||
return &Network::find_next_ip_address(shift, 4);
|
||||
}
|
||||
sub ipcidr
|
||||
{
|
||||
|
||||
sub ipcidr {
|
||||
my ($ip,$cidr) = &Net::IPv4Addr::ipv4_parse(shift);
|
||||
return "$ip\/$cidr";
|
||||
}
|
||||
|
||||
sub ipcidr2msk
|
||||
{
|
||||
sub ipcidr2msk {
|
||||
my ($ip,$cidr) = &Net::IPv4Addr::ipv4_parse(shift);
|
||||
my $netmask = &Net::IPv4Addr::ipv4_cidr2msk($cidr);
|
||||
return "$ip\/$netmask";
|
||||
}
|
||||
|
||||
|
||||
sub validemail {
|
||||
my $mail = shift;
|
||||
return 0 if ( $mail !~ /^[0-9a-zA-Z\.\-\_]+\@[0-9a-zA-Z\.\-]+$/ );
|
||||
|
||||
306
config/cfgroot/network-functions.pl
Normal file
306
config/cfgroot/network-functions.pl
Normal file
@@ -0,0 +1,306 @@
|
||||
#!/usr/bin/perl -w
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2014 IPFire Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
|
||||
package Network;
|
||||
|
||||
use Socket;
|
||||
|
||||
my %PREFIX2NETMASK = (
|
||||
32 => "255.255.255.255",
|
||||
31 => "255.255.255.254",
|
||||
30 => "255.255.255.252",
|
||||
29 => "255.255.255.248",
|
||||
28 => "255.255.255.240",
|
||||
27 => "255.255.255.224",
|
||||
26 => "255.255.255.192",
|
||||
25 => "255.255.255.128",
|
||||
24 => "255.255.255.0",
|
||||
23 => "255.255.254.0",
|
||||
22 => "255.255.252.0",
|
||||
21 => "255.255.248.0",
|
||||
20 => "255.255.240.0",
|
||||
19 => "255.255.224.0",
|
||||
18 => "255.255.192.0",
|
||||
17 => "255.255.128.0",
|
||||
16 => "255.255.0.0",
|
||||
15 => "255.254.0.0",
|
||||
14 => "255.252.0.0",
|
||||
13 => "255.248.0.0",
|
||||
12 => "255.240.0.0",
|
||||
11 => "255.224.0.0",
|
||||
10 => "255.192.0.0",
|
||||
9 => "255.128.0.0",
|
||||
8 => "255.0.0.0",
|
||||
7 => "254.0.0.0",
|
||||
6 => "252.0.0.0",
|
||||
5 => "248.0.0.0",
|
||||
4 => "240.0.0.0",
|
||||
3 => "224.0.0.0",
|
||||
2 => "192.0.0.0",
|
||||
1 => "128.0.0.0",
|
||||
0 => "0.0.0.0"
|
||||
);
|
||||
|
||||
my %NETMASK2PREFIX = reverse(%PREFIX2NETMASK);
|
||||
|
||||
# Takes an IP address in dotted decimal notation and
|
||||
# returns a 32 bit integer representing that IP addresss.
|
||||
# Will return undef for invalid inputs.
|
||||
sub ip2bin($) {
|
||||
my $address = shift;
|
||||
|
||||
# This function returns undef for undefined input.
|
||||
if (!defined $address) {
|
||||
return undef;
|
||||
}
|
||||
|
||||
my $address_bin = &Socket::inet_pton(AF_INET, $address);
|
||||
if ($address_bin) {
|
||||
$address_bin = unpack('N', $address_bin);
|
||||
}
|
||||
|
||||
return $address_bin;
|
||||
}
|
||||
|
||||
# Does the reverse of ip2bin().
|
||||
# Will return undef for invalid inputs.
|
||||
sub bin2ip($) {
|
||||
my $address_bin = shift;
|
||||
|
||||
# This function returns undef for undefined input.
|
||||
if (!defined $address_bin) {
|
||||
return undef;
|
||||
}
|
||||
|
||||
my $address = pack('N', $address_bin);
|
||||
if ($address) {
|
||||
$address = &Socket::inet_ntop(AF_INET, $address);
|
||||
}
|
||||
|
||||
return $address;
|
||||
}
|
||||
|
||||
# Takes a network in either a.b.c.d/a.b.c.d or a.b.c.d/e notation
|
||||
# and will return an 32 bit integer representing the start
|
||||
# address and an other one representing the network mask.
|
||||
sub network2bin($) {
|
||||
my $network = shift;
|
||||
|
||||
my ($address, $netmask) = split(/\//, $network, 2);
|
||||
|
||||
if (&check_prefix($netmask)) {
|
||||
$netmask = &convert_prefix2netmask($netmask);
|
||||
}
|
||||
|
||||
my $address_bin = &ip2bin($address);
|
||||
my $netmask_bin = &ip2bin($netmask);
|
||||
|
||||
my $network_start = $address_bin & $netmask_bin;
|
||||
|
||||
return ($network_start, $netmask_bin);
|
||||
}
|
||||
|
||||
# Returns True for all valid IP addresses
|
||||
sub check_ip_address($) {
|
||||
my $address = shift;
|
||||
|
||||
# Normalise the IP address and compare the result with
|
||||
# the input - which should obviously the same.
|
||||
my $normalised_address = &_normalise_ip_address($address);
|
||||
|
||||
return ((defined $normalised_address) && ($address eq $normalised_address));
|
||||
}
|
||||
|
||||
# Returns True for all valid prefixes.
|
||||
sub check_prefix($) {
|
||||
my $prefix = shift;
|
||||
|
||||
return (exists $PREFIX2NETMASK{$prefix});
|
||||
}
|
||||
|
||||
# Returns True for all valid subnet masks.
|
||||
sub check_netmask($) {
|
||||
my $netmask = shift;
|
||||
|
||||
return (exists $NETMASK2PREFIX{$netmask});
|
||||
}
|
||||
|
||||
# Returns True for all valid inputs like a.b.c.d/a.b.c.d.
|
||||
sub check_ip_address_and_netmask($$) {
|
||||
my $network = shift;
|
||||
|
||||
my ($address, $netmask) = split(/\//, $network, 2);
|
||||
|
||||
# Check if the IP address is fine.
|
||||
#
|
||||
my $result = &check_ip_address($address);
|
||||
unless ($result) {
|
||||
return $result;
|
||||
}
|
||||
|
||||
return &check_netmask($netmask);
|
||||
}
|
||||
|
||||
# For internal use only. Will take an IP address and
|
||||
# return it in a normalised style. Like 8.8.8.010 -> 8.8.8.8.
|
||||
sub _normalise_ip_address($) {
|
||||
my $address = shift;
|
||||
|
||||
my $address_bin = &ip2bin($address);
|
||||
if (!defined $address_bin) {
|
||||
return undef;
|
||||
}
|
||||
|
||||
return &bin2ip($address_bin);
|
||||
}
|
||||
|
||||
# Returns the prefix for the given subnet mask.
|
||||
sub convert_netmask2prefix($) {
|
||||
my $netmask = shift;
|
||||
|
||||
if (exists $NETMASK2PREFIX{$netmask}) {
|
||||
return $NETMASK2PREFIX{$netmask};
|
||||
}
|
||||
|
||||
return undef;
|
||||
}
|
||||
|
||||
# Returns the subnet mask for the given prefix.
|
||||
sub convert_prefix2netmask($) {
|
||||
my $prefix = shift;
|
||||
|
||||
if (exists $PREFIX2NETMASK{$prefix}) {
|
||||
return $PREFIX2NETMASK{$prefix};
|
||||
}
|
||||
|
||||
return undef;
|
||||
}
|
||||
|
||||
# Takes an IP address and an offset and
|
||||
# will return the offset'th IP address.
|
||||
sub find_next_ip_address($$) {
|
||||
my $address = shift;
|
||||
my $offset = shift;
|
||||
|
||||
my $address_bin = &ip2bin($address);
|
||||
$address_bin += $offset;
|
||||
|
||||
return &bin2ip($address_bin);
|
||||
}
|
||||
|
||||
# Returns the network address of the given network.
|
||||
sub get_netaddress($) {
|
||||
my $network = shift;
|
||||
my ($network_bin, $netmask_bin) = &network2bin($network);
|
||||
|
||||
if (defined $network_bin) {
|
||||
return &bin2ip($network_bin);
|
||||
}
|
||||
|
||||
return undef;
|
||||
}
|
||||
|
||||
# Returns the broadcast of the given network.
|
||||
sub get_broadcast($) {
|
||||
my $network = shift;
|
||||
my ($network_bin, $netmask_bin) = &network2bin($network);
|
||||
|
||||
return &bin2ip($network_bin ^ ~$netmask_bin);
|
||||
}
|
||||
|
||||
# Returns True if $address is in $network.
|
||||
sub ip_address_in_network($$) {
|
||||
my $address = shift;
|
||||
my $network = shift;
|
||||
|
||||
my $address_bin = &ip2bin($address);
|
||||
return undef unless (defined $address_bin);
|
||||
|
||||
my ($network_bin, $netmask_bin) = &network2bin($network);
|
||||
|
||||
# Find end address
|
||||
my $broadcast_bin = $network_bin ^ ~$netmask_bin;
|
||||
|
||||
return (($address_bin ge $network_bin) && ($address_bin le $broadcast_bin));
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
# Remove the next line to enable the testsuite
|
||||
__END__
|
||||
|
||||
sub assert($) {
|
||||
my $ret = shift;
|
||||
|
||||
if ($ret) {
|
||||
return;
|
||||
}
|
||||
|
||||
print "ASSERTION ERROR";
|
||||
exit(1);
|
||||
}
|
||||
|
||||
sub testsuite() {
|
||||
my $result;
|
||||
|
||||
my $address1 = &ip2bin("8.8.8.8");
|
||||
assert($address1 == 134744072);
|
||||
|
||||
my $address2 = &bin2ip($address1);
|
||||
assert($address2 eq "8.8.8.8");
|
||||
|
||||
# Check if valid IP addresses are correctly recognised.
|
||||
foreach my $address ("1.2.3.4", "192.168.180.1", "127.0.0.1") {
|
||||
if (!&check_ip_address($address)) {
|
||||
print "$address is not correctly recognised as a valid IP address!\n";
|
||||
exit 1;
|
||||
};
|
||||
}
|
||||
|
||||
# Check if invalid IP addresses are correctly found.
|
||||
foreach my $address ("456.2.3.4", "192.768.180.1", "127.1", "1", "a.b.c.d", "1.2.3.4.5", "1.2.3.4/12") {
|
||||
if (&check_ip_address($address)) {
|
||||
print "$address is recognised as a valid IP address!\n";
|
||||
exit 1;
|
||||
};
|
||||
}
|
||||
|
||||
$result = &check_ip_address_and_netmask("192.168.180.0/255.255.255.0");
|
||||
assert($result);
|
||||
|
||||
$result = &convert_netmask2prefix("255.255.254.0");
|
||||
assert($result == 23);
|
||||
|
||||
$result = &convert_prefix2netmask(8);
|
||||
assert($result eq "255.0.0.0");
|
||||
|
||||
$result = &find_next_ip_address("1.2.3.4", 2);
|
||||
assert($result eq "1.2.3.6");
|
||||
|
||||
$result = &ip_address_in_network("10.0.1.4", "10.0.0.0/8");
|
||||
assert($result);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
&testsuite();
|
||||
@@ -25,6 +25,7 @@ stunnel:x:51:
|
||||
lock:x:54:
|
||||
sshd:x:74:
|
||||
pcap:x:77:
|
||||
wbpriv:x:88:squid
|
||||
nobody:x:99:
|
||||
users:x:100:
|
||||
snort:x:101:
|
||||
|
||||
16
config/findutils/updatedb
Normal file
16
config/findutils/updatedb
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
[ -x "/usr/bin/updatedb" ] || exit 0
|
||||
|
||||
LOCKFILE="/var/lib/locate/updatedb.lock"
|
||||
|
||||
trap "rm -f $LOCKFILE" EXIT
|
||||
|
||||
if [ -e "$LOCKFILE" ]; then
|
||||
echo >&2 "Warning: $LOCKFILE present, not running updatedb."
|
||||
exit 1
|
||||
else
|
||||
touch "$LOCKFILE"
|
||||
fi
|
||||
|
||||
/usr/bin/updatedb
|
||||
@@ -217,7 +217,7 @@ sub get_std_net_ip
|
||||
}elsif($val eq 'BLUE'){
|
||||
return "$netsettings{'BLUE_NETADDRESS'}/$netsettings{'BLUE_NETMASK'}";
|
||||
}elsif($val eq 'RED'){
|
||||
return "0.0.0.0/0 -o $con";
|
||||
return "0.0.0.0/0";
|
||||
}elsif($val =~ /OpenVPN/i){
|
||||
return "$ovpnsettings{'DOVPN_SUBNET'}";
|
||||
}elsif($val =~ /IPsec/i){
|
||||
@@ -226,6 +226,23 @@ sub get_std_net_ip
|
||||
return ;
|
||||
}
|
||||
}
|
||||
sub get_interface
|
||||
{
|
||||
my $net=shift;
|
||||
if($net eq "$netsettings{'GREEN_NETADDRESS'}/$netsettings{'GREEN_NETMASK'}"){
|
||||
return "$netsettings{'GREEN_DEV'}";
|
||||
}
|
||||
if($net eq "$netsettings{'ORANGE_NETADDRESS'}/$netsettings{'ORANGE_NETMASK'}"){
|
||||
return "$netsettings{'ORANGE_DEV'}";
|
||||
}
|
||||
if($net eq "$netsettings{'BLUE_NETADDRESS'}/$netsettings{'BLUE_NETMASK'}"){
|
||||
return "$netsettings{'BLUE_DEV'}";
|
||||
}
|
||||
if($net eq "0.0.0.0/0") {
|
||||
return &get_external_interface();
|
||||
}
|
||||
return "";
|
||||
}
|
||||
sub get_net_ip
|
||||
{
|
||||
my $val=shift;
|
||||
@@ -305,9 +322,9 @@ sub get_address
|
||||
# address. Otherwise, we assume that it is an IP address.
|
||||
if ($key ~~ ["src_addr", "tgt_addr"]) {
|
||||
if (&General::validmac($value)) {
|
||||
push(@ret, "-m mac --mac-source $value");
|
||||
push(@ret, ["-m mac --mac-source $value", ""]);
|
||||
} else {
|
||||
push(@ret, $value);
|
||||
push(@ret, [$value, ""]);
|
||||
}
|
||||
|
||||
# If a default network interface (GREEN, BLUE, etc.) is selected, we
|
||||
@@ -316,88 +333,90 @@ sub get_address
|
||||
my $external_interface = &get_external_interface();
|
||||
|
||||
my $network_address = &get_std_net_ip($value, $external_interface);
|
||||
|
||||
if ($network_address) {
|
||||
push(@ret, $network_address);
|
||||
my $interface = &get_interface($network_address);
|
||||
push(@ret, [$network_address, $interface]);
|
||||
}
|
||||
|
||||
# Custom networks.
|
||||
} elsif ($key ~~ ["cust_net_src", "cust_net_tgt", "Custom Network"]) {
|
||||
my $network_address = &get_net_ip($value);
|
||||
if ($network_address) {
|
||||
push(@ret, $network_address);
|
||||
push(@ret, [$network_address, ""]);
|
||||
}
|
||||
|
||||
# Custom hosts.
|
||||
} elsif ($key ~~ ["cust_host_src", "cust_host_tgt", "Custom Host"]) {
|
||||
my $host_address = &get_host_ip($value, $type);
|
||||
if ($host_address) {
|
||||
push(@ret, $host_address);
|
||||
push(@ret, [$host_address, ""]);
|
||||
}
|
||||
|
||||
# OpenVPN networks.
|
||||
} elsif ($key ~~ ["ovpn_net_src", "ovpn_net_tgt", "OpenVPN static network"]) {
|
||||
my $network_address = &get_ovpn_net_ip($value, 1);
|
||||
if ($network_address) {
|
||||
push(@ret, $network_address);
|
||||
push(@ret, [$network_address, ""]);
|
||||
}
|
||||
|
||||
# OpenVPN hosts.
|
||||
} elsif ($key ~~ ["ovpn_host_src", "ovpn_host_tgt", "OpenVPN static host"]) {
|
||||
my $host_address = &get_ovpn_host_ip($value, 33);
|
||||
if ($host_address) {
|
||||
push(@ret, $host_address);
|
||||
push(@ret, [$host_address, ""]);
|
||||
}
|
||||
|
||||
# OpenVPN N2N.
|
||||
} elsif ($key ~~ ["ovpn_n2n_src", "ovpn_n2n_tgt", "OpenVPN N-2-N"]) {
|
||||
my $network_address = &get_ovpn_n2n_ip($value, 11);
|
||||
if ($network_address) {
|
||||
push(@ret, $network_address);
|
||||
push(@ret, [$network_address, ""]);
|
||||
}
|
||||
|
||||
# IPsec networks.
|
||||
} elsif ($key ~~ ["ipsec_net_src", "ipsec_net_tgt", "IpSec Network"]) {
|
||||
my $network_address = &get_ipsec_net_ip($value, 11);
|
||||
if ($network_address) {
|
||||
push(@ret, $network_address);
|
||||
push(@ret, [$network_address, ""]);
|
||||
}
|
||||
|
||||
# The firewall's own IP addresses.
|
||||
} elsif ($key ~~ ["ipfire", "ipfire_src"]) {
|
||||
# ALL
|
||||
if ($value eq "ALL") {
|
||||
push(@ret, "0/0");
|
||||
push(@ret, ["0/0", ""]);
|
||||
|
||||
# GREEN
|
||||
} elsif ($value eq "GREEN") {
|
||||
push(@ret, $netsettings{"GREEN_ADDRESS"});
|
||||
push(@ret, [$netsettings{"GREEN_ADDRESS"}, ""]);
|
||||
|
||||
# BLUE
|
||||
} elsif ($value eq "BLUE") {
|
||||
push(@ret, $netsettings{"BLUE_ADDRESS"});
|
||||
push(@ret, [$netsettings{"BLUE_ADDRESS"}, ""]);
|
||||
|
||||
# ORANGE
|
||||
} elsif ($value eq "ORANGE") {
|
||||
push(@ret, $netsettings{"ORANGE_ADDRESS"});
|
||||
push(@ret, [$netsettings{"ORANGE_ADDRESS"}, ""]);
|
||||
|
||||
# RED
|
||||
} elsif ($value ~~ ["RED", "RED1"]) {
|
||||
my $address = &get_external_address();
|
||||
if ($address) {
|
||||
push(@ret, $address);
|
||||
push(@ret, [$address, ""]);
|
||||
}
|
||||
|
||||
# Aliases
|
||||
} else {
|
||||
my $alias = &get_alias($value);
|
||||
if ($alias) {
|
||||
push(@ret, $alias);
|
||||
push(@ret, [$alias, ""]);
|
||||
}
|
||||
}
|
||||
|
||||
# If nothing was selected, we assume "any".
|
||||
} else {
|
||||
push(@ret, "0/0");
|
||||
push(@ret, ["0/0", ""]);
|
||||
}
|
||||
|
||||
return @ret;
|
||||
|
||||
@@ -131,6 +131,12 @@ sub print_rule {
|
||||
print "\n";
|
||||
}
|
||||
|
||||
sub count_elements {
|
||||
my $hash = shift;
|
||||
|
||||
return scalar @$hash;
|
||||
}
|
||||
|
||||
sub flush {
|
||||
run("$IPTABLES -F $CHAIN_INPUT");
|
||||
run("$IPTABLES -F $CHAIN_FORWARD");
|
||||
@@ -186,6 +192,9 @@ sub buildrules {
|
||||
# Skip disabled rules.
|
||||
next unless ($$hash{$key}[2] eq 'ON');
|
||||
|
||||
# Count number of elements in this line
|
||||
my $elements = &count_elements($$hash{$key});
|
||||
|
||||
if ($DEBUG) {
|
||||
print_rule($$hash{$key});
|
||||
}
|
||||
@@ -268,6 +277,34 @@ sub buildrules {
|
||||
}
|
||||
}
|
||||
|
||||
# Concurrent connection limit
|
||||
my @ratelimit_options = ();
|
||||
|
||||
if (($elements gt 34) && ($$hash{$key}[32] eq 'ON')) {
|
||||
my $conn_limit = $$hash{$key}[33];
|
||||
|
||||
if ($conn_limit ge 1) {
|
||||
push(@ratelimit_options, ("-m", "connlimit"));
|
||||
|
||||
# Use the the entire source IP address
|
||||
push(@ratelimit_options, "--connlimit-saddr");
|
||||
push(@ratelimit_options, ("--connlimit-mask", "32"));
|
||||
|
||||
# Apply the limit
|
||||
push(@ratelimit_options, ("--connlimit-upto", $conn_limit));
|
||||
}
|
||||
}
|
||||
|
||||
# Ratelimit
|
||||
if (($elements gt 37) && ($$hash{$key}[34] eq 'ON')) {
|
||||
my $rate_limit = "$$hash{$key}[35]/$$hash{$key}[36]";
|
||||
|
||||
if ($rate_limit) {
|
||||
push(@ratelimit_options, ("-m", "limit"));
|
||||
push(@ratelimit_options, ("--limit", $rate_limit));
|
||||
}
|
||||
}
|
||||
|
||||
# Check which protocols are used in this rule and so that we can
|
||||
# later group rules by protocols.
|
||||
my @protocols = &get_protocols($hash, $key);
|
||||
@@ -291,24 +328,30 @@ sub buildrules {
|
||||
|
||||
foreach my $src (@sources) {
|
||||
# Skip invalid source.
|
||||
next unless (defined $src);
|
||||
next unless ($src);
|
||||
|
||||
# Sanitize source.
|
||||
my $source = $src;
|
||||
my $source = @$src[0];
|
||||
if ($source ~~ @ANY_ADDRESSES) {
|
||||
$source = "";
|
||||
}
|
||||
|
||||
my $source_intf = @$src[1];
|
||||
|
||||
foreach my $dst (@destinations) {
|
||||
# Skip invalid rules.
|
||||
next unless (defined $dst);
|
||||
next if (!$dst || ($dst eq "none"));
|
||||
|
||||
# Sanitize destination.
|
||||
my $destination = $dst;
|
||||
my $destination = @$dst[0];
|
||||
if ($destination ~~ @ANY_ADDRESSES) {
|
||||
$destination = "";
|
||||
}
|
||||
|
||||
my $destination_intf = @$dst[1];
|
||||
|
||||
# Array with iptables arguments.
|
||||
my @options = ();
|
||||
|
||||
@@ -325,15 +368,26 @@ sub buildrules {
|
||||
push(@source_options, ("-s", $source));
|
||||
}
|
||||
|
||||
if ($source_intf) {
|
||||
push(@source_options, ("-i", $source_intf));
|
||||
}
|
||||
|
||||
# Prepare destination options.
|
||||
my @destination_options = ();
|
||||
if ($destination) {
|
||||
push(@destination_options, ("-d", $destination));
|
||||
}
|
||||
|
||||
if ($destination_intf) {
|
||||
push(@destination_options, ("-o", $destination_intf));
|
||||
}
|
||||
|
||||
# Add time constraint options.
|
||||
push(@options, @time_options);
|
||||
|
||||
# Add ratelimiting option
|
||||
push(@options, @ratelimit_options);
|
||||
|
||||
my $firewall_is_in_source_subnet = 1;
|
||||
if ($source) {
|
||||
$firewall_is_in_source_subnet = &firewall_is_in_subnet($source);
|
||||
@@ -364,7 +418,7 @@ sub buildrules {
|
||||
# Make port-forwardings useable from the internal networks.
|
||||
my @internal_addresses = &fwlib::get_internal_firewall_ip_addresses(1);
|
||||
unless ($nat_address ~~ @internal_addresses) {
|
||||
&add_dnat_mangle_rules($nat_address, @nat_options);
|
||||
&add_dnat_mangle_rules($nat_address, $source_intf, @nat_options);
|
||||
}
|
||||
|
||||
push(@nat_options, @source_options);
|
||||
@@ -455,6 +509,10 @@ sub buildrules {
|
||||
}
|
||||
}
|
||||
}
|
||||
#Reload firewall.local if present
|
||||
if ( -f '/etc/sysconfig/firewall.local'){
|
||||
run("/etc/sysconfig/firewall.local reload");
|
||||
}
|
||||
}
|
||||
|
||||
# Formats the given timestamp into the iptables format which is "hh:mm" UTC.
|
||||
@@ -681,6 +739,7 @@ sub get_dnat_target_port {
|
||||
|
||||
sub add_dnat_mangle_rules {
|
||||
my $nat_address = shift;
|
||||
my $interface = shift;
|
||||
my @options = @_;
|
||||
|
||||
my $mark = 0;
|
||||
@@ -691,6 +750,8 @@ sub add_dnat_mangle_rules {
|
||||
next unless (exists $defaultNetworks{$zone . "_NETADDRESS"});
|
||||
next unless (exists $defaultNetworks{$zone . "_NETMASK"});
|
||||
|
||||
next if ($interface && $interface ne $defaultNetworks{$zone . "_DEV"});
|
||||
|
||||
my @mangle_options = @options;
|
||||
|
||||
my $netaddress = $defaultNetworks{$zone . "_NETADDRESS"};
|
||||
|
||||
@@ -1,21 +1,15 @@
|
||||
#usr/include/gmp.h
|
||||
#usr/include/gmpxx.h
|
||||
#usr/include/mp.h
|
||||
#usr/lib/libgmp.a
|
||||
#usr/lib/libgmp.la
|
||||
#usr/lib/libgmp.so
|
||||
usr/lib/libgmp.so.10
|
||||
usr/lib/libgmp.so.10.0.5
|
||||
usr/lib/libgmp.so.10.2.0
|
||||
#usr/lib/libgmpxx.a
|
||||
#usr/lib/libgmpxx.la
|
||||
#usr/lib/libgmpxx.so
|
||||
usr/lib/libgmpxx.so.4
|
||||
usr/lib/libgmpxx.so.4.2.5
|
||||
#usr/lib/libmp.a
|
||||
#usr/lib/libmp.la
|
||||
#usr/lib/libmp.so
|
||||
usr/lib/libmp.so.3
|
||||
usr/lib/libmp.so.3.1.25
|
||||
usr/lib/libgmpxx.so.4.4.0
|
||||
#usr/share/info/gmp.info
|
||||
#usr/share/info/gmp.info-1
|
||||
#usr/share/info/gmp.info-2
|
||||
|
||||
@@ -74,13 +74,13 @@ etc/rc.d/init.d/networking/red.down/05-RS-dnsmasq
|
||||
etc/rc.d/init.d/networking/red.down/10-ipsec
|
||||
etc/rc.d/init.d/networking/red.down/10-miniupnpd
|
||||
etc/rc.d/init.d/networking/red.down/10-ovpn
|
||||
etc/rc.d/init.d/networking/red.down/20-RL-firewall
|
||||
etc/rc.d/init.d/networking/red.down/20-firewall
|
||||
#etc/rc.d/init.d/networking/red.up
|
||||
etc/rc.d/init.d/networking/red.up/01-conntrack-cleanup
|
||||
etc/rc.d/init.d/networking/red.up/05-RS-dnsmasq
|
||||
etc/rc.d/init.d/networking/red.up/10-miniupnpd
|
||||
etc/rc.d/init.d/networking/red.up/10-multicast
|
||||
etc/rc.d/init.d/networking/red.up/20-RL-firewall
|
||||
etc/rc.d/init.d/networking/red.up/20-firewall
|
||||
etc/rc.d/init.d/networking/red.up/23-RS-snort
|
||||
etc/rc.d/init.d/networking/red.up/24-RS-qos
|
||||
etc/rc.d/init.d/networking/red.up/27-RS-squid
|
||||
@@ -132,7 +132,6 @@ etc/rc.d/init.d/upnpd
|
||||
#etc/rc.d/init.d/vdradmin
|
||||
#etc/rc.d/init.d/vsftpd
|
||||
#etc/rc.d/init.d/watchdog
|
||||
#etc/rc.d/init.d/winbind
|
||||
etc/rc.d/init.d/wlanclient
|
||||
#etc/rc.d/init.d/xinetd
|
||||
#etc/rc.d/rc0.d
|
||||
|
||||
@@ -1,6 +1,73 @@
|
||||
bin/sh
|
||||
bin/bash
|
||||
#bin/bashbug
|
||||
#usr/share/doc/bash
|
||||
#usr/share/doc/bash/CHANGES
|
||||
#usr/share/doc/bash/COMPAT
|
||||
#usr/share/doc/bash/FAQ
|
||||
#usr/share/doc/bash/INTRO
|
||||
#usr/share/doc/bash/NEWS
|
||||
#usr/share/doc/bash/POSIX
|
||||
#usr/share/doc/bash/RBASH
|
||||
#usr/share/doc/bash/README
|
||||
#usr/share/doc/bash/bash.html
|
||||
#usr/share/doc/bash/bashref.html
|
||||
#usr/share/info/bash.info
|
||||
#usr/share/locale/af
|
||||
#usr/share/locale/af/LC_MESSAGES
|
||||
#usr/share/locale/af/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/bg/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/ca/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/cs/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/da/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/de/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/el/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/en@boldquot
|
||||
#usr/share/locale/en@boldquot/LC_MESSAGES
|
||||
#usr/share/locale/en@boldquot/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/en@quot
|
||||
#usr/share/locale/en@quot/LC_MESSAGES
|
||||
#usr/share/locale/en@quot/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/eo
|
||||
#usr/share/locale/eo/LC_MESSAGES
|
||||
#usr/share/locale/eo/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/es/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/et
|
||||
#usr/share/locale/et/LC_MESSAGES
|
||||
#usr/share/locale/et/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/fi/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/fr/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/ga
|
||||
#usr/share/locale/ga/LC_MESSAGES
|
||||
#usr/share/locale/ga/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/gl/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/hr/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/hu/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/id/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/it/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/ja/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/lt/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/nl/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/pl/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/pt_BR/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/ro
|
||||
#usr/share/locale/ro/LC_MESSAGES
|
||||
#usr/share/locale/ro/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/ru/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/sk/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/sl
|
||||
#usr/share/locale/sl/LC_MESSAGES
|
||||
#usr/share/locale/sl/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/sr
|
||||
#usr/share/locale/sr/LC_MESSAGES
|
||||
#usr/share/locale/sr/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/sv/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/tr/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/uk
|
||||
#usr/share/locale/uk/LC_MESSAGES
|
||||
#usr/share/locale/uk/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/vi/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/zh_CN/LC_MESSAGES/bash.mo
|
||||
#usr/share/locale/zh_TW/LC_MESSAGES/bash.mo
|
||||
#usr/share/man/man1/bash.1
|
||||
#usr/share/man/man1/bashbug.1
|
||||
bin/sh
|
||||
bin/bash
|
||||
|
||||
2
config/rootfiles/common/batctl
Normal file
2
config/rootfiles/common/batctl
Normal file
@@ -0,0 +1,2 @@
|
||||
usr/sbin/batctl
|
||||
#usr/share/man/man8/batctl.8
|
||||
10938
config/rootfiles/common/boost
Normal file
10938
config/rootfiles/common/boost
Normal file
File diff suppressed because it is too large
Load Diff
@@ -117,6 +117,7 @@ var/ipfire/modem
|
||||
#var/ipfire/modem/defaults
|
||||
#var/ipfire/modem/settings
|
||||
var/ipfire/modem-lib.pl
|
||||
var/ipfire/network-functions.pl
|
||||
var/ipfire/net-traffic
|
||||
#var/ipfire/net-traffic/net-traffic-admin.pl
|
||||
#var/ipfire/net-traffic/net-traffic-lib.pl
|
||||
|
||||
@@ -60,4 +60,7 @@ usr/lib/python2.7/site-packages/ddns/system.pyo
|
||||
#usr/share/locale/uz@Latn/LC_MESSAGES
|
||||
#usr/share/locale/uz@Latn/LC_MESSAGES/ddns.mo
|
||||
#usr/share/locale/vi/LC_MESSAGES/ddns.mo
|
||||
#usr/share/locale/zh
|
||||
#usr/share/locale/zh/LC_MESSAGES
|
||||
#usr/share/locale/zh/LC_MESSAGES/ddns.mo
|
||||
#var/ipfire/ddns/ddns.conf.sample
|
||||
|
||||
@@ -11,7 +11,6 @@ etc/fcron.hourly/info.txt
|
||||
etc/fcron.minutely/info.txt
|
||||
#etc/fcron.monthly
|
||||
etc/fcron.monthly/info.txt
|
||||
#etc/fcron.weekly
|
||||
etc/fcron.weekly/info.txt
|
||||
usr/bin/fcronsighup
|
||||
usr/bin/fcrontab
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
#etc/fcron.weekly
|
||||
etc/fcron.weekly/updatedb
|
||||
bin/find
|
||||
usr/bin/locate
|
||||
#usr/bin/oldfind
|
||||
|
||||
@@ -1,25 +1,17 @@
|
||||
#usr/include/gmp.h
|
||||
#usr/include/gmpxx.h
|
||||
#usr/include/mp.h
|
||||
#usr/lib/libgmp.a
|
||||
#usr/lib/libgmp.la
|
||||
#usr/lib/libgmp.so
|
||||
usr/lib/libgmp.so.10
|
||||
usr/lib/libgmp.so.10.0.5
|
||||
usr/lib/libgmp.so.10.2.0
|
||||
#usr/lib/libgmpxx.a
|
||||
#usr/lib/libgmpxx.la
|
||||
#usr/lib/libgmpxx.so
|
||||
usr/lib/libgmpxx.so.4
|
||||
usr/lib/libgmpxx.so.4.2.5
|
||||
#usr/lib/libmp.a
|
||||
#usr/lib/libmp.la
|
||||
#usr/lib/libmp.so
|
||||
usr/lib/libmp.so.3
|
||||
usr/lib/libmp.so.3.1.25
|
||||
usr/lib/libgmpxx.so.4.4.0
|
||||
usr/lib/sse2/libgmp.so.10
|
||||
usr/lib/sse2/libgmp.so.10.0.5
|
||||
usr/lib/sse2/libmp.so.3
|
||||
usr/lib/sse2/libmp.so.3.1.25
|
||||
usr/lib/sse2/libgmp.so.10.2.0
|
||||
#usr/share/info/gmp.info
|
||||
#usr/share/info/gmp.info-1
|
||||
#usr/share/info/gmp.info-2
|
||||
|
||||
@@ -76,13 +76,13 @@ etc/rc.d/init.d/networking/red.down/05-RS-dnsmasq
|
||||
etc/rc.d/init.d/networking/red.down/10-ipsec
|
||||
etc/rc.d/init.d/networking/red.down/10-miniupnpd
|
||||
etc/rc.d/init.d/networking/red.down/10-ovpn
|
||||
etc/rc.d/init.d/networking/red.down/20-RL-firewall
|
||||
etc/rc.d/init.d/networking/red.down/20-firewall
|
||||
#etc/rc.d/init.d/networking/red.up
|
||||
etc/rc.d/init.d/networking/red.up/01-conntrack-cleanup
|
||||
etc/rc.d/init.d/networking/red.up/05-RS-dnsmasq
|
||||
etc/rc.d/init.d/networking/red.up/10-miniupnpd
|
||||
etc/rc.d/init.d/networking/red.up/10-multicast
|
||||
etc/rc.d/init.d/networking/red.up/20-RL-firewall
|
||||
etc/rc.d/init.d/networking/red.up/20-firewall
|
||||
etc/rc.d/init.d/networking/red.up/23-RS-snort
|
||||
etc/rc.d/init.d/networking/red.up/24-RS-qos
|
||||
etc/rc.d/init.d/networking/red.up/27-RS-squid
|
||||
@@ -135,7 +135,6 @@ etc/rc.d/init.d/upnpd
|
||||
#etc/rc.d/init.d/vdradmin
|
||||
#etc/rc.d/init.d/vsftpd
|
||||
#etc/rc.d/init.d/watchdog
|
||||
#etc/rc.d/init.d/winbind
|
||||
etc/rc.d/init.d/wlanclient
|
||||
#etc/rc.d/init.d/xinetd
|
||||
#etc/rc.d/rc0.d
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
bin/ping
|
||||
usr/bin/ping
|
||||
usr/bin/tracepath
|
||||
|
||||
204
config/rootfiles/common/libnl-3
Normal file
204
config/rootfiles/common/libnl-3
Normal file
@@ -0,0 +1,204 @@
|
||||
#etc/libnl
|
||||
etc/libnl/classid
|
||||
etc/libnl/pktloc
|
||||
#usr/include/libnl3
|
||||
#usr/include/libnl3/netlink
|
||||
#usr/include/libnl3/netlink/addr.h
|
||||
#usr/include/libnl3/netlink/attr.h
|
||||
#usr/include/libnl3/netlink/cache-api.h
|
||||
#usr/include/libnl3/netlink/cache.h
|
||||
#usr/include/libnl3/netlink/cli
|
||||
#usr/include/libnl3/netlink/cli/addr.h
|
||||
#usr/include/libnl3/netlink/cli/class.h
|
||||
#usr/include/libnl3/netlink/cli/cls.h
|
||||
#usr/include/libnl3/netlink/cli/ct.h
|
||||
#usr/include/libnl3/netlink/cli/exp.h
|
||||
#usr/include/libnl3/netlink/cli/link.h
|
||||
#usr/include/libnl3/netlink/cli/neigh.h
|
||||
#usr/include/libnl3/netlink/cli/qdisc.h
|
||||
#usr/include/libnl3/netlink/cli/route.h
|
||||
#usr/include/libnl3/netlink/cli/rule.h
|
||||
#usr/include/libnl3/netlink/cli/tc.h
|
||||
#usr/include/libnl3/netlink/cli/utils.h
|
||||
#usr/include/libnl3/netlink/data.h
|
||||
#usr/include/libnl3/netlink/errno.h
|
||||
#usr/include/libnl3/netlink/fib_lookup
|
||||
#usr/include/libnl3/netlink/fib_lookup/lookup.h
|
||||
#usr/include/libnl3/netlink/fib_lookup/request.h
|
||||
#usr/include/libnl3/netlink/genl
|
||||
#usr/include/libnl3/netlink/genl/ctrl.h
|
||||
#usr/include/libnl3/netlink/genl/family.h
|
||||
#usr/include/libnl3/netlink/genl/genl.h
|
||||
#usr/include/libnl3/netlink/genl/mngt.h
|
||||
#usr/include/libnl3/netlink/handlers.h
|
||||
#usr/include/libnl3/netlink/hash.h
|
||||
#usr/include/libnl3/netlink/hashtable.h
|
||||
#usr/include/libnl3/netlink/idiag
|
||||
#usr/include/libnl3/netlink/idiag/idiagnl.h
|
||||
#usr/include/libnl3/netlink/idiag/meminfo.h
|
||||
#usr/include/libnl3/netlink/idiag/msg.h
|
||||
#usr/include/libnl3/netlink/idiag/req.h
|
||||
#usr/include/libnl3/netlink/idiag/vegasinfo.h
|
||||
#usr/include/libnl3/netlink/list.h
|
||||
#usr/include/libnl3/netlink/msg.h
|
||||
#usr/include/libnl3/netlink/netfilter
|
||||
#usr/include/libnl3/netlink/netfilter/ct.h
|
||||
#usr/include/libnl3/netlink/netfilter/exp.h
|
||||
#usr/include/libnl3/netlink/netfilter/log.h
|
||||
#usr/include/libnl3/netlink/netfilter/log_msg.h
|
||||
#usr/include/libnl3/netlink/netfilter/netfilter.h
|
||||
#usr/include/libnl3/netlink/netfilter/nfnl.h
|
||||
#usr/include/libnl3/netlink/netfilter/queue.h
|
||||
#usr/include/libnl3/netlink/netfilter/queue_msg.h
|
||||
#usr/include/libnl3/netlink/netlink-compat.h
|
||||
#usr/include/libnl3/netlink/netlink-kernel.h
|
||||
#usr/include/libnl3/netlink/netlink.h
|
||||
#usr/include/libnl3/netlink/object-api.h
|
||||
#usr/include/libnl3/netlink/object.h
|
||||
#usr/include/libnl3/netlink/route
|
||||
#usr/include/libnl3/netlink/route/act
|
||||
#usr/include/libnl3/netlink/route/act/mirred.h
|
||||
#usr/include/libnl3/netlink/route/action.h
|
||||
#usr/include/libnl3/netlink/route/addr.h
|
||||
#usr/include/libnl3/netlink/route/class.h
|
||||
#usr/include/libnl3/netlink/route/classifier.h
|
||||
#usr/include/libnl3/netlink/route/cls
|
||||
#usr/include/libnl3/netlink/route/cls/basic.h
|
||||
#usr/include/libnl3/netlink/route/cls/cgroup.h
|
||||
#usr/include/libnl3/netlink/route/cls/ematch
|
||||
#usr/include/libnl3/netlink/route/cls/ematch.h
|
||||
#usr/include/libnl3/netlink/route/cls/ematch/cmp.h
|
||||
#usr/include/libnl3/netlink/route/cls/ematch/meta.h
|
||||
#usr/include/libnl3/netlink/route/cls/ematch/nbyte.h
|
||||
#usr/include/libnl3/netlink/route/cls/ematch/text.h
|
||||
#usr/include/libnl3/netlink/route/cls/fw.h
|
||||
#usr/include/libnl3/netlink/route/cls/police.h
|
||||
#usr/include/libnl3/netlink/route/cls/u32.h
|
||||
#usr/include/libnl3/netlink/route/link
|
||||
#usr/include/libnl3/netlink/route/link.h
|
||||
#usr/include/libnl3/netlink/route/link/api.h
|
||||
#usr/include/libnl3/netlink/route/link/bonding.h
|
||||
#usr/include/libnl3/netlink/route/link/bridge.h
|
||||
#usr/include/libnl3/netlink/route/link/can.h
|
||||
#usr/include/libnl3/netlink/route/link/inet.h
|
||||
#usr/include/libnl3/netlink/route/link/info-api.h
|
||||
#usr/include/libnl3/netlink/route/link/ip6tnl.h
|
||||
#usr/include/libnl3/netlink/route/link/ipgre.h
|
||||
#usr/include/libnl3/netlink/route/link/ipip.h
|
||||
#usr/include/libnl3/netlink/route/link/ipvti.h
|
||||
#usr/include/libnl3/netlink/route/link/macvlan.h
|
||||
#usr/include/libnl3/netlink/route/link/sit.h
|
||||
#usr/include/libnl3/netlink/route/link/veth.h
|
||||
#usr/include/libnl3/netlink/route/link/vlan.h
|
||||
#usr/include/libnl3/netlink/route/link/vxlan.h
|
||||
#usr/include/libnl3/netlink/route/neighbour.h
|
||||
#usr/include/libnl3/netlink/route/neightbl.h
|
||||
#usr/include/libnl3/netlink/route/nexthop.h
|
||||
#usr/include/libnl3/netlink/route/pktloc.h
|
||||
#usr/include/libnl3/netlink/route/qdisc
|
||||
#usr/include/libnl3/netlink/route/qdisc.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/cbq.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/dsmark.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/fifo.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/fq_codel.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/htb.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/netem.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/plug.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/prio.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/red.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/sfq.h
|
||||
#usr/include/libnl3/netlink/route/qdisc/tbf.h
|
||||
#usr/include/libnl3/netlink/route/route.h
|
||||
#usr/include/libnl3/netlink/route/rtnl.h
|
||||
#usr/include/libnl3/netlink/route/rule.h
|
||||
#usr/include/libnl3/netlink/route/tc-api.h
|
||||
#usr/include/libnl3/netlink/route/tc.h
|
||||
#usr/include/libnl3/netlink/socket.h
|
||||
#usr/include/libnl3/netlink/types.h
|
||||
#usr/include/libnl3/netlink/utils.h
|
||||
#usr/include/libnl3/netlink/version.h
|
||||
#usr/lib/libnl
|
||||
#usr/lib/libnl-3.a
|
||||
#usr/lib/libnl-3.la
|
||||
#usr/lib/libnl-3.so
|
||||
usr/lib/libnl-3.so.200
|
||||
usr/lib/libnl-3.so.200.20.0
|
||||
#usr/lib/libnl-cli-3.a
|
||||
#usr/lib/libnl-cli-3.la
|
||||
#usr/lib/libnl-cli-3.so
|
||||
usr/lib/libnl-cli-3.so.200
|
||||
usr/lib/libnl-cli-3.so.200.20.0
|
||||
#usr/lib/libnl-genl-3.a
|
||||
#usr/lib/libnl-genl-3.la
|
||||
#usr/lib/libnl-genl-3.so
|
||||
usr/lib/libnl-genl-3.so.200
|
||||
usr/lib/libnl-genl-3.so.200.20.0
|
||||
#usr/lib/libnl-idiag-3.a
|
||||
#usr/lib/libnl-idiag-3.la
|
||||
#usr/lib/libnl-idiag-3.so
|
||||
usr/lib/libnl-idiag-3.so.200
|
||||
usr/lib/libnl-idiag-3.so.200.20.0
|
||||
#usr/lib/libnl-nf-3.a
|
||||
#usr/lib/libnl-nf-3.la
|
||||
#usr/lib/libnl-nf-3.so
|
||||
usr/lib/libnl-nf-3.so.200
|
||||
usr/lib/libnl-nf-3.so.200.20.0
|
||||
#usr/lib/libnl-route-3.a
|
||||
#usr/lib/libnl-route-3.la
|
||||
#usr/lib/libnl-route-3.so
|
||||
usr/lib/libnl-route-3.so.200
|
||||
usr/lib/libnl-route-3.so.200.20.0
|
||||
#usr/lib/libnl/cli
|
||||
#usr/lib/libnl/cli/cls
|
||||
#usr/lib/libnl/cli/cls/basic.a
|
||||
#usr/lib/libnl/cli/cls/basic.la
|
||||
usr/lib/libnl/cli/cls/basic.so
|
||||
#usr/lib/libnl/cli/cls/cgroup.a
|
||||
#usr/lib/libnl/cli/cls/cgroup.la
|
||||
usr/lib/libnl/cli/cls/cgroup.so
|
||||
#usr/lib/libnl/cli/qdisc
|
||||
#usr/lib/libnl/cli/qdisc/bfifo.a
|
||||
#usr/lib/libnl/cli/qdisc/bfifo.la
|
||||
usr/lib/libnl/cli/qdisc/bfifo.so
|
||||
#usr/lib/libnl/cli/qdisc/blackhole.a
|
||||
#usr/lib/libnl/cli/qdisc/blackhole.la
|
||||
usr/lib/libnl/cli/qdisc/blackhole.so
|
||||
#usr/lib/libnl/cli/qdisc/fq_codel.a
|
||||
#usr/lib/libnl/cli/qdisc/fq_codel.la
|
||||
usr/lib/libnl/cli/qdisc/fq_codel.so
|
||||
#usr/lib/libnl/cli/qdisc/htb.a
|
||||
#usr/lib/libnl/cli/qdisc/htb.la
|
||||
usr/lib/libnl/cli/qdisc/htb.so
|
||||
#usr/lib/libnl/cli/qdisc/ingress.a
|
||||
#usr/lib/libnl/cli/qdisc/ingress.la
|
||||
usr/lib/libnl/cli/qdisc/ingress.so
|
||||
#usr/lib/libnl/cli/qdisc/pfifo.a
|
||||
#usr/lib/libnl/cli/qdisc/pfifo.la
|
||||
usr/lib/libnl/cli/qdisc/pfifo.so
|
||||
#usr/lib/libnl/cli/qdisc/plug.a
|
||||
#usr/lib/libnl/cli/qdisc/plug.la
|
||||
usr/lib/libnl/cli/qdisc/plug.so
|
||||
#usr/lib/pkgconfig/libnl-3.0.pc
|
||||
#usr/lib/pkgconfig/libnl-cli-3.0.pc
|
||||
#usr/lib/pkgconfig/libnl-genl-3.0.pc
|
||||
#usr/lib/pkgconfig/libnl-nf-3.0.pc
|
||||
#usr/lib/pkgconfig/libnl-route-3.0.pc
|
||||
#usr/sbin/genl-ctrl-list
|
||||
usr/sbin/nl-class-add
|
||||
usr/sbin/nl-class-delete
|
||||
usr/sbin/nl-class-list
|
||||
usr/sbin/nl-classid-lookup
|
||||
usr/sbin/nl-cls-add
|
||||
usr/sbin/nl-cls-delete
|
||||
usr/sbin/nl-cls-list
|
||||
usr/sbin/nl-link-list
|
||||
usr/sbin/nl-pktloc-lookup
|
||||
usr/sbin/nl-qdisc-add
|
||||
usr/sbin/nl-qdisc-delete
|
||||
usr/sbin/nl-qdisc-list
|
||||
#usr/share/man/man8/genl-ctrl-list.8
|
||||
#usr/share/man/man8/nl-classid-lookup.8
|
||||
#usr/share/man/man8/nl-pktloc-lookup.8
|
||||
#usr/share/man/man8/nl-qdisc-add.8
|
||||
#usr/share/man/man8/nl-qdisc-delete.8
|
||||
#usr/share/man/man8/nl-qdisc-list.8
|
||||
@@ -3,13 +3,13 @@
|
||||
#usr/lib/libmpfr.a
|
||||
#usr/lib/libmpfr.la
|
||||
#usr/lib/libmpfr.so
|
||||
usr/lib/libmpfr.so.1
|
||||
usr/lib/libmpfr.so.1.2.2
|
||||
usr/lib/libmpfr.so.4
|
||||
usr/lib/libmpfr.so.4.1.2
|
||||
#usr/share/doc/mpfr
|
||||
#usr/share/doc/mpfr/AUTHORS
|
||||
#usr/share/doc/mpfr/BUGS
|
||||
#usr/share/doc/mpfr/COPYING
|
||||
#usr/share/doc/mpfr/COPYING.LIB
|
||||
#usr/share/doc/mpfr/COPYING.LESSER
|
||||
#usr/share/doc/mpfr/FAQ.html
|
||||
#usr/share/doc/mpfr/NEWS
|
||||
#usr/share/doc/mpfr/TODO
|
||||
@@ -18,4 +18,5 @@ usr/lib/libmpfr.so.1.2.2
|
||||
#usr/share/doc/mpfr/examples/divworst.c
|
||||
#usr/share/doc/mpfr/examples/rndo-add.c
|
||||
#usr/share/doc/mpfr/examples/sample.c
|
||||
#usr/share/doc/mpfr/examples/version.c
|
||||
#usr/share/info/mpfr.info
|
||||
|
||||
@@ -33,18 +33,18 @@ etc/ppp/standardloginscript
|
||||
#usr/include/pppd/tdb.h
|
||||
#usr/include/pppd/upap.h
|
||||
usr/lib/pppd
|
||||
usr/lib/pppd/2.4.6
|
||||
usr/lib/pppd/2.4.6/minconn.so
|
||||
usr/lib/pppd/2.4.6/openl2tp.so
|
||||
usr/lib/pppd/2.4.6/passprompt.so
|
||||
usr/lib/pppd/2.4.6/passwordfd.so
|
||||
usr/lib/pppd/2.4.6/pppoatm.so
|
||||
usr/lib/pppd/2.4.6/pppol2tp.so
|
||||
usr/lib/pppd/2.4.6/radattr.so
|
||||
usr/lib/pppd/2.4.6/radius.so
|
||||
usr/lib/pppd/2.4.6/radrealms.so
|
||||
usr/lib/pppd/2.4.6/rp-pppoe.so
|
||||
usr/lib/pppd/2.4.6/winbind.so
|
||||
usr/lib/pppd/2.4.7
|
||||
#usr/lib/pppd/2.4.7/minconn.so
|
||||
#usr/lib/pppd/2.4.7/openl2tp.so
|
||||
#usr/lib/pppd/2.4.7/passprompt.so
|
||||
#usr/lib/pppd/2.4.7/passwordfd.so
|
||||
#usr/lib/pppd/2.4.7/pppoatm.so
|
||||
#usr/lib/pppd/2.4.7/pppol2tp.so
|
||||
#usr/lib/pppd/2.4.7/radattr.so
|
||||
#usr/lib/pppd/2.4.7/radius.so
|
||||
#usr/lib/pppd/2.4.7/radrealms.so
|
||||
#usr/lib/pppd/2.4.7/rp-pppoe.so
|
||||
#usr/lib/pppd/2.4.7/winbind.so
|
||||
usr/sbin/chat
|
||||
usr/sbin/pppd
|
||||
usr/sbin/pppdump
|
||||
|
||||
@@ -9,10 +9,14 @@
|
||||
#usr/include/readline/tilde.h
|
||||
#usr/lib/libhistory.so
|
||||
usr/lib/libhistory.so.6
|
||||
usr/lib/libhistory.so.6.2
|
||||
usr/lib/libhistory.so.6.3
|
||||
#usr/lib/libreadline.so
|
||||
usr/lib/libreadline.so.6
|
||||
usr/lib/libreadline.so.6.2
|
||||
usr/lib/libreadline.so.6.3
|
||||
#usr/share/doc/readline
|
||||
#usr/share/doc/readline/CHANGES
|
||||
#usr/share/doc/readline/INSTALL
|
||||
#usr/share/doc/readline/README
|
||||
#usr/share/info/history.info
|
||||
#usr/share/info/readline.info
|
||||
#usr/share/info/rluserman.info
|
||||
|
||||
@@ -98,6 +98,7 @@ usr/local/bin/timezone-transition
|
||||
usr/local/bin/update-lang-cache
|
||||
#usr/local/include
|
||||
#usr/local/lib
|
||||
#usr/local/lib/sse2
|
||||
#usr/local/sbin
|
||||
#usr/local/share
|
||||
#usr/local/share/doc
|
||||
|
||||
3
config/rootfiles/core/85/filelists/files
Normal file
3
config/rootfiles/core/85/filelists/files
Normal file
@@ -0,0 +1,3 @@
|
||||
etc/system-release
|
||||
etc/issue
|
||||
var/ipfire/langs
|
||||
1
config/rootfiles/core/85/filelists/openssl
Symbolic link
1
config/rootfiles/core/85/filelists/openssl
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/openssl
|
||||
1
config/rootfiles/core/85/filelists/openssl-compat
Symbolic link
1
config/rootfiles/core/85/filelists/openssl-compat
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/openssl-compat
|
||||
56
config/rootfiles/core/85/update.sh
Normal file
56
config/rootfiles/core/85/update.sh
Normal file
@@ -0,0 +1,56 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2014 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
|
||||
|
||||
# Remove old core updates from pakfire cache to save space...
|
||||
core=85
|
||||
for (( i=1; i<=$core; i++ ))
|
||||
do
|
||||
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
|
||||
done
|
||||
|
||||
# Stop services
|
||||
|
||||
# Remove old files
|
||||
|
||||
# Extract files
|
||||
extract_files
|
||||
|
||||
# Start services
|
||||
|
||||
# Update Language cache
|
||||
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
|
||||
|
||||
sync
|
||||
|
||||
# This update need a reboot...
|
||||
touch /var/run/need_reboot
|
||||
|
||||
# Finish
|
||||
/etc/init.d/fireinfo start
|
||||
sendprofile
|
||||
|
||||
# Don't report the exitcode last command
|
||||
exit 0
|
||||
20
config/rootfiles/oldcore/80/exclude
Normal file
20
config/rootfiles/oldcore/80/exclude
Normal file
@@ -0,0 +1,20 @@
|
||||
boot/config.txt
|
||||
etc/collectd.custom
|
||||
etc/ipsec.conf
|
||||
etc/ipsec.secrets
|
||||
etc/ipsec.user.conf
|
||||
etc/ipsec.user.secrets
|
||||
etc/localtime
|
||||
etc/shadow
|
||||
etc/ssh/ssh_config
|
||||
etc/ssh/sshd_config
|
||||
etc/ssl/openssl.cnf
|
||||
etc/sudoers
|
||||
etc/sysconfig/firewall.local
|
||||
etc/sysconfig/rc.local
|
||||
etc/udev/rules.d/30-persistent-network.rules
|
||||
srv/web/ipfire/html/proxy.pac
|
||||
var/ipfire/ovpn
|
||||
var/log/cache
|
||||
var/state/dhcp/dhcpd.leases
|
||||
var/updatecache
|
||||
@@ -4,9 +4,13 @@ etc/logrotate.conf
|
||||
etc/rc.d/init.d/cleanfs
|
||||
etc/rc.d/init.d/dhcrelay
|
||||
etc/rc.d/init.d/dnsmasq
|
||||
etc/rc.d/init.d/firewall
|
||||
etc/rc.d/init.d/networking/red.up/30-ddns
|
||||
etc/rc.d/init.d/rngd
|
||||
srv/web/ipfire/cgi-bin/ddns.cgi
|
||||
srv/web/ipfire/cgi-bin/ids.cgi
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/firewalllogcountry.dat
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/log.dat
|
||||
srv/web/ipfire/cgi-bin/netexternal.cgi
|
||||
srv/web/ipfire/cgi-bin/ovpnmain.cgi
|
||||
srv/web/ipfire/cgi-bin/proxy.cgi
|
||||
1
config/rootfiles/oldcore/80/meta
Normal file
1
config/rootfiles/oldcore/80/meta
Normal file
@@ -0,0 +1 @@
|
||||
DEPS=""
|
||||
@@ -60,9 +60,6 @@ rm -f \
|
||||
/opt/pakfire/db/installed/meta-libgpg-error \
|
||||
/opt/pakfire/db/rootfiles/libgpg-error
|
||||
|
||||
# Regenerate squid configuration file
|
||||
sudo -u nobody /srv/web/ipfire/cgi-bin/proxy.cgi
|
||||
|
||||
# Fix broken proxy configuration permissions
|
||||
chown -R nobody.nobody \
|
||||
/var/ipfire/proxy/advanced \
|
||||
@@ -72,6 +69,9 @@ chown -R nobody.nobody \
|
||||
/var/ipfire/proxy/squid.conf \
|
||||
/var/ipfire/proxy/transparent
|
||||
|
||||
# Regenerate squid configuration file
|
||||
sudo -u nobody /srv/web/ipfire/cgi-bin/proxy.cgi
|
||||
|
||||
# Generate ddns configuration file
|
||||
sudo -u nobody /srv/web/ipfire/cgi-bin/ddns.cgi
|
||||
|
||||
20
config/rootfiles/oldcore/81/exclude
Normal file
20
config/rootfiles/oldcore/81/exclude
Normal file
@@ -0,0 +1,20 @@
|
||||
boot/config.txt
|
||||
etc/collectd.custom
|
||||
etc/ipsec.conf
|
||||
etc/ipsec.secrets
|
||||
etc/ipsec.user.conf
|
||||
etc/ipsec.user.secrets
|
||||
etc/localtime
|
||||
etc/shadow
|
||||
etc/ssh/ssh_config
|
||||
etc/ssh/sshd_config
|
||||
etc/ssl/openssl.cnf
|
||||
etc/sudoers
|
||||
etc/sysconfig/firewall.local
|
||||
etc/sysconfig/rc.local
|
||||
etc/udev/rules.d/30-persistent-network.rules
|
||||
srv/web/ipfire/html/proxy.pac
|
||||
var/ipfire/ovpn
|
||||
var/log/cache
|
||||
var/state/dhcp/dhcpd.leases
|
||||
var/updatecache
|
||||
1
config/rootfiles/oldcore/81/filelists/ddns
Symbolic link
1
config/rootfiles/oldcore/81/filelists/ddns
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/ddns
|
||||
5
config/rootfiles/oldcore/81/filelists/files
Normal file
5
config/rootfiles/oldcore/81/filelists/files
Normal file
@@ -0,0 +1,5 @@
|
||||
etc/system-release
|
||||
etc/issue
|
||||
etc/rc.d/init.d/firewall
|
||||
srv/web/ipfire/cgi-bin/ddns.cgi
|
||||
srv/web/ipfire/cgi-bin/ovpnmain.cgi
|
||||
1
config/rootfiles/oldcore/81/filelists/lzo
Symbolic link
1
config/rootfiles/oldcore/81/filelists/lzo
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/lzo
|
||||
1
config/rootfiles/oldcore/81/filelists/openssh
Symbolic link
1
config/rootfiles/oldcore/81/filelists/openssh
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/openssh
|
||||
1
config/rootfiles/oldcore/81/filelists/openssl
Symbolic link
1
config/rootfiles/oldcore/81/filelists/openssl
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/openssl
|
||||
1
config/rootfiles/oldcore/81/meta
Normal file
1
config/rootfiles/oldcore/81/meta
Normal file
@@ -0,0 +1 @@
|
||||
DEPS=""
|
||||
57
config/rootfiles/oldcore/81/update.sh
Normal file
57
config/rootfiles/oldcore/81/update.sh
Normal file
@@ -0,0 +1,57 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2014 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
|
||||
|
||||
# Remove old core updates from pakfire cache to save space...
|
||||
core=81
|
||||
for (( i=1; i<=$core; i++ ))
|
||||
do
|
||||
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
|
||||
done
|
||||
|
||||
# Stop services
|
||||
|
||||
# Remove old strongswan files
|
||||
|
||||
# Extract files
|
||||
extract_files
|
||||
|
||||
# Start services
|
||||
/etc/init.d/apache restart
|
||||
|
||||
# Update Language cache
|
||||
#perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
|
||||
|
||||
sync
|
||||
|
||||
# This update need a reboot...
|
||||
touch /var/run/need_reboot
|
||||
^^
|
||||
# Finish
|
||||
/etc/init.d/fireinfo start
|
||||
sendprofile
|
||||
|
||||
# Don't report the exitcode last command
|
||||
exit 0
|
||||
20
config/rootfiles/oldcore/82/exclude
Normal file
20
config/rootfiles/oldcore/82/exclude
Normal file
@@ -0,0 +1,20 @@
|
||||
boot/config.txt
|
||||
etc/collectd.custom
|
||||
etc/ipsec.conf
|
||||
etc/ipsec.secrets
|
||||
etc/ipsec.user.conf
|
||||
etc/ipsec.user.secrets
|
||||
etc/localtime
|
||||
etc/shadow
|
||||
etc/ssh/ssh_config
|
||||
etc/ssh/sshd_config
|
||||
etc/ssl/openssl.cnf
|
||||
etc/sudoers
|
||||
etc/sysconfig/firewall.local
|
||||
etc/sysconfig/rc.local
|
||||
etc/udev/rules.d/30-persistent-network.rules
|
||||
srv/web/ipfire/html/proxy.pac
|
||||
var/ipfire/ovpn
|
||||
var/log/cache
|
||||
var/state/dhcp/dhcpd.leases
|
||||
var/updatecache
|
||||
1
config/rootfiles/oldcore/82/filelists/armv5tel/gmp
Symbolic link
1
config/rootfiles/oldcore/82/filelists/armv5tel/gmp
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/armv5tel/gmp
|
||||
1
config/rootfiles/oldcore/82/filelists/batctl
Symbolic link
1
config/rootfiles/oldcore/82/filelists/batctl
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/batctl
|
||||
1
config/rootfiles/oldcore/82/filelists/boost
Symbolic link
1
config/rootfiles/oldcore/82/filelists/boost
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/boost
|
||||
15
config/rootfiles/oldcore/82/filelists/files
Normal file
15
config/rootfiles/oldcore/82/filelists/files
Normal file
@@ -0,0 +1,15 @@
|
||||
etc/system-release
|
||||
etc/issue
|
||||
etc/rc.d/init.d/firewall
|
||||
etc/rc.d/init.d/networking/red.down/20-firewall
|
||||
etc/rc.d/init.d/networking/red.up/20-firewall
|
||||
srv/web/ipfire/cgi-bin/connections.cgi
|
||||
srv/web/ipfire/cgi-bin/ddns.cgi
|
||||
srv/web/ipfire/cgi-bin/fwhosts.cgi
|
||||
srv/web/ipfire/cgi-bin/optionsfw.cgi
|
||||
srv/web/ipfire/cgi-bin/ovpnmain.cgi
|
||||
srv/web/ipfire/cgi-bin/proxy.cgi
|
||||
usr/lib/firewall/rules.pl
|
||||
var/ipfire/general-functions.pl
|
||||
var/ipfire/langs
|
||||
var/ipfire/network-functions.pl
|
||||
1
config/rootfiles/oldcore/82/filelists/i586/gmp
Symbolic link
1
config/rootfiles/oldcore/82/filelists/i586/gmp
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/i586/gmp
|
||||
1
config/rootfiles/oldcore/82/filelists/iputils
Symbolic link
1
config/rootfiles/oldcore/82/filelists/iputils
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/iputils
|
||||
1
config/rootfiles/oldcore/82/filelists/libnl-3
Symbolic link
1
config/rootfiles/oldcore/82/filelists/libnl-3
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/libnl-3
|
||||
1
config/rootfiles/oldcore/82/filelists/mpfr
Symbolic link
1
config/rootfiles/oldcore/82/filelists/mpfr
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/mpfr
|
||||
1
config/rootfiles/oldcore/82/filelists/openssl-compat
Symbolic link
1
config/rootfiles/oldcore/82/filelists/openssl-compat
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/openssl-compat
|
||||
1
config/rootfiles/oldcore/82/filelists/ppp
Symbolic link
1
config/rootfiles/oldcore/82/filelists/ppp
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/ppp
|
||||
1
config/rootfiles/oldcore/82/meta
Normal file
1
config/rootfiles/oldcore/82/meta
Normal file
@@ -0,0 +1 @@
|
||||
DEPS=""
|
||||
57
config/rootfiles/oldcore/82/update.sh
Normal file
57
config/rootfiles/oldcore/82/update.sh
Normal file
@@ -0,0 +1,57 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2014 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
|
||||
|
||||
# Remove old core updates from pakfire cache to save space...
|
||||
core=82
|
||||
for (( i=1; i<=$core; i++ ))
|
||||
do
|
||||
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
|
||||
done
|
||||
|
||||
# Stop services
|
||||
|
||||
# Remove old files
|
||||
rm -vf /etc/rc.d/init.d/networking/red.up/20-RL-firewall
|
||||
|
||||
# Extract files
|
||||
extract_files
|
||||
|
||||
# Start services
|
||||
|
||||
# Update Language cache
|
||||
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
|
||||
|
||||
sync
|
||||
|
||||
# This update need a reboot...
|
||||
#touch /var/run/need_reboot
|
||||
|
||||
# Finish
|
||||
/etc/init.d/fireinfo start
|
||||
sendprofile
|
||||
|
||||
# Don't report the exitcode last command
|
||||
exit 0
|
||||
20
config/rootfiles/oldcore/83/exclude
Normal file
20
config/rootfiles/oldcore/83/exclude
Normal file
@@ -0,0 +1,20 @@
|
||||
boot/config.txt
|
||||
etc/collectd.custom
|
||||
etc/ipsec.conf
|
||||
etc/ipsec.secrets
|
||||
etc/ipsec.user.conf
|
||||
etc/ipsec.user.secrets
|
||||
etc/localtime
|
||||
etc/shadow
|
||||
etc/ssh/ssh_config
|
||||
etc/ssh/sshd_config
|
||||
etc/ssl/openssl.cnf
|
||||
etc/sudoers
|
||||
etc/sysconfig/firewall.local
|
||||
etc/sysconfig/rc.local
|
||||
etc/udev/rules.d/30-persistent-network.rules
|
||||
srv/web/ipfire/html/proxy.pac
|
||||
var/ipfire/ovpn
|
||||
var/log/cache
|
||||
var/state/dhcp/dhcpd.leases
|
||||
var/updatecache
|
||||
1
config/rootfiles/oldcore/83/filelists/bash
Symbolic link
1
config/rootfiles/oldcore/83/filelists/bash
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/bash
|
||||
6
config/rootfiles/oldcore/83/filelists/files
Normal file
6
config/rootfiles/oldcore/83/filelists/files
Normal file
@@ -0,0 +1,6 @@
|
||||
etc/system-release
|
||||
etc/issue
|
||||
srv/web/ipfire/cgi-bin/logs.cgi/ids.dat
|
||||
srv/web/ipfire/cgi-bin/proxy.cgi
|
||||
srv/web/ipfire/cgi-bin/urlfilter.cgi
|
||||
var/ipfire/general-functions.pl
|
||||
1
config/rootfiles/oldcore/83/filelists/findutils
Symbolic link
1
config/rootfiles/oldcore/83/filelists/findutils
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/findutils
|
||||
1
config/rootfiles/oldcore/83/filelists/squid
Symbolic link
1
config/rootfiles/oldcore/83/filelists/squid
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/squid
|
||||
1
config/rootfiles/oldcore/83/meta
Normal file
1
config/rootfiles/oldcore/83/meta
Normal file
@@ -0,0 +1 @@
|
||||
DEPS=""
|
||||
59
config/rootfiles/oldcore/83/update.sh
Normal file
59
config/rootfiles/oldcore/83/update.sh
Normal file
@@ -0,0 +1,59 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2014 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
|
||||
|
||||
# Remove old core updates from pakfire cache to save space...
|
||||
core=83
|
||||
for (( i=1; i<=$core; i++ ))
|
||||
do
|
||||
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
|
||||
done
|
||||
|
||||
# Stop services
|
||||
|
||||
# Remove old files
|
||||
|
||||
# Extract files
|
||||
extract_files
|
||||
|
||||
# reload init because glibc/linker changed
|
||||
telinit -u
|
||||
|
||||
# Start services
|
||||
|
||||
# Update Language cache
|
||||
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
|
||||
|
||||
sync
|
||||
|
||||
# This update need a reboot...
|
||||
touch /var/run/need_reboot
|
||||
|
||||
# Finish
|
||||
/etc/init.d/fireinfo start
|
||||
sendprofile
|
||||
|
||||
# Don't report the exitcode last command
|
||||
exit 0
|
||||
20
config/rootfiles/oldcore/84/exclude
Normal file
20
config/rootfiles/oldcore/84/exclude
Normal file
@@ -0,0 +1,20 @@
|
||||
boot/config.txt
|
||||
etc/collectd.custom
|
||||
etc/ipsec.conf
|
||||
etc/ipsec.secrets
|
||||
etc/ipsec.user.conf
|
||||
etc/ipsec.user.secrets
|
||||
etc/localtime
|
||||
etc/shadow
|
||||
etc/ssh/ssh_config
|
||||
etc/ssh/sshd_config
|
||||
etc/ssl/openssl.cnf
|
||||
etc/sudoers
|
||||
etc/sysconfig/firewall.local
|
||||
etc/sysconfig/rc.local
|
||||
etc/udev/rules.d/30-persistent-network.rules
|
||||
srv/web/ipfire/html/proxy.pac
|
||||
var/ipfire/ovpn
|
||||
var/log/cache
|
||||
var/state/dhcp/dhcpd.leases
|
||||
var/updatecache
|
||||
1
config/rootfiles/oldcore/84/filelists/bash
Symbolic link
1
config/rootfiles/oldcore/84/filelists/bash
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/bash
|
||||
1
config/rootfiles/oldcore/84/filelists/dnsmasq
Symbolic link
1
config/rootfiles/oldcore/84/filelists/dnsmasq
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/dnsmasq
|
||||
11
config/rootfiles/oldcore/84/filelists/files
Normal file
11
config/rootfiles/oldcore/84/filelists/files
Normal file
@@ -0,0 +1,11 @@
|
||||
etc/system-release
|
||||
etc/issue
|
||||
etc/rc.d/init.d/firewall
|
||||
etc/rc.d/init.d/network
|
||||
srv/web/ipfire/cgi-bin/firewall.cgi
|
||||
srv/web/ipfire/cgi-bin/fwhosts.cgi
|
||||
srv/web/ipfire/cgi-bin/urlfilter.cgi
|
||||
usr/lib/firewall/firewall-lib.pl
|
||||
usr/lib/firewall/rules.pl
|
||||
usr/local/bin/update-lang-cache
|
||||
var/ipfire/langs
|
||||
1
config/rootfiles/oldcore/84/filelists/readline
Symbolic link
1
config/rootfiles/oldcore/84/filelists/readline
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/readline
|
||||
1
config/rootfiles/oldcore/84/filelists/squid
Symbolic link
1
config/rootfiles/oldcore/84/filelists/squid
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/squid
|
||||
1
config/rootfiles/oldcore/84/meta
Normal file
1
config/rootfiles/oldcore/84/meta
Normal file
@@ -0,0 +1 @@
|
||||
DEPS=""
|
||||
60
config/rootfiles/oldcore/84/update.sh
Normal file
60
config/rootfiles/oldcore/84/update.sh
Normal file
@@ -0,0 +1,60 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2014 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
|
||||
|
||||
# Remove old core updates from pakfire cache to save space...
|
||||
core=84
|
||||
for (( i=1; i<=$core; i++ ))
|
||||
do
|
||||
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
|
||||
done
|
||||
|
||||
# Stop services
|
||||
/etc/init.d/squid stop
|
||||
/etc/init.d/dnsmasq stop
|
||||
|
||||
# Remove old files
|
||||
|
||||
# Extract files
|
||||
extract_files
|
||||
|
||||
# Start services
|
||||
/etc/init.d/dnsmasq start
|
||||
/etc/init.d/squid start
|
||||
|
||||
# Update Language cache
|
||||
perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
|
||||
|
||||
sync
|
||||
|
||||
# This update need a reboot...
|
||||
touch /var/run/need_reboot
|
||||
|
||||
# Finish
|
||||
/etc/init.d/fireinfo start
|
||||
sendprofile
|
||||
|
||||
# Don't report the exitcode last command
|
||||
exit 0
|
||||
62
config/rootfiles/packages/bacula
Normal file
62
config/rootfiles/packages/bacula
Normal file
@@ -0,0 +1,62 @@
|
||||
#etc/bacula
|
||||
#etc/bacula/bacula
|
||||
#etc/bacula/bacula-ctl-dir
|
||||
etc/bacula/bacula-ctl-fd
|
||||
#etc/bacula/bacula-ctl-sd
|
||||
etc/bacula/bacula-fd.conf
|
||||
#etc/bacula/bacula_config
|
||||
#etc/bacula/bconsole
|
||||
#etc/bacula/bconsole.conf
|
||||
#etc/bacula/btraceback.dbx
|
||||
#etc/bacula/btraceback.gdb
|
||||
#etc/bacula/btraceback.mdb
|
||||
#etc/bacula/disk-changer
|
||||
#etc/bacula/dvd-handler
|
||||
#etc/bacula/mtx-changer
|
||||
#etc/bacula/mtx-changer.conf
|
||||
etc/rc.d/init.d/bacula
|
||||
usr/lib/bpipe-fd.so
|
||||
usr/lib/libbac-5.2.13.so
|
||||
#usr/lib/libbac.la
|
||||
#usr/lib/libbac.so
|
||||
usr/lib/libbaccfg-5.2.13.so
|
||||
#usr/lib/libbaccfg.la
|
||||
#usr/lib/libbaccfg.so
|
||||
usr/lib/libbacfind-5.2.13.so
|
||||
#usr/lib/libbacfind.la
|
||||
#usr/lib/libbacfind.so
|
||||
usr/lib/libbacpy-5.2.13.so
|
||||
#usr/lib/libbacpy.la
|
||||
#usr/lib/libbacpy.so
|
||||
#usr/sbin/bacula
|
||||
usr/sbin/bacula-fd
|
||||
#usr/sbin/bconsole
|
||||
#usr/sbin/btraceback
|
||||
#usr/share/doc/bacula
|
||||
#usr/share/doc/bacula/ChangeLog
|
||||
#usr/share/doc/bacula/INSTALL
|
||||
#usr/share/doc/bacula/LICENSE
|
||||
#usr/share/doc/bacula/README
|
||||
#usr/share/doc/bacula/ReleaseNotes
|
||||
#usr/share/doc/bacula/VERIFYING
|
||||
#usr/share/doc/bacula/technotes
|
||||
#usr/share/man/man1/bacula-bwxconsole.1.gz
|
||||
#usr/share/man/man1/bacula-tray-monitor.1.gz
|
||||
#usr/share/man/man1/bat.1.gz
|
||||
#usr/share/man/man1/bsmtp.1.gz
|
||||
#usr/share/man/man8/bacula-dir.8.gz
|
||||
#usr/share/man/man8/bacula-fd.8.gz
|
||||
#usr/share/man/man8/bacula-sd.8.gz
|
||||
#usr/share/man/man8/bacula.8.gz
|
||||
#usr/share/man/man8/bconsole.8.gz
|
||||
#usr/share/man/man8/bcopy.8.gz
|
||||
#usr/share/man/man8/bextract.8.gz
|
||||
#usr/share/man/man8/bls.8.gz
|
||||
#usr/share/man/man8/bregex.8.gz
|
||||
#usr/share/man/man8/bscan.8.gz
|
||||
#usr/share/man/man8/btape.8.gz
|
||||
#usr/share/man/man8/btraceback.8.gz
|
||||
#usr/share/man/man8/bwild.8.gz
|
||||
#usr/share/man/man8/dbcheck.8.gz
|
||||
#var/bacula
|
||||
var/bacula/working
|
||||
165
config/rootfiles/packages/krb5
Normal file
165
config/rootfiles/packages/krb5
Normal file
@@ -0,0 +1,165 @@
|
||||
#usr/bin/gss-client
|
||||
#usr/bin/k5srvutil
|
||||
usr/bin/kadmin
|
||||
usr/bin/kdestroy
|
||||
usr/bin/kinit
|
||||
usr/bin/klist
|
||||
usr/bin/kpasswd
|
||||
#usr/bin/krb5-config
|
||||
#usr/bin/ksu
|
||||
#usr/bin/kswitch
|
||||
#usr/bin/ktutil
|
||||
#usr/bin/kvno
|
||||
#usr/bin/sclient
|
||||
#usr/bin/sim_client
|
||||
#usr/bin/uuclient
|
||||
#usr/include/gssapi
|
||||
#usr/include/gssapi.h
|
||||
#usr/include/gssapi/gssapi.h
|
||||
#usr/include/gssapi/gssapi_ext.h
|
||||
#usr/include/gssapi/gssapi_generic.h
|
||||
#usr/include/gssapi/gssapi_krb5.h
|
||||
#usr/include/gssapi/mechglue.h
|
||||
#usr/include/gssrpc
|
||||
#usr/include/gssrpc/auth.h
|
||||
#usr/include/gssrpc/auth_gss.h
|
||||
#usr/include/gssrpc/auth_gssapi.h
|
||||
#usr/include/gssrpc/auth_unix.h
|
||||
#usr/include/gssrpc/clnt.h
|
||||
#usr/include/gssrpc/netdb.h
|
||||
#usr/include/gssrpc/pmap_clnt.h
|
||||
#usr/include/gssrpc/pmap_prot.h
|
||||
#usr/include/gssrpc/pmap_rmt.h
|
||||
#usr/include/gssrpc/rename.h
|
||||
#usr/include/gssrpc/rpc.h
|
||||
#usr/include/gssrpc/rpc_msg.h
|
||||
#usr/include/gssrpc/svc.h
|
||||
#usr/include/gssrpc/svc_auth.h
|
||||
#usr/include/gssrpc/types.h
|
||||
#usr/include/gssrpc/xdr.h
|
||||
#usr/include/kadm5
|
||||
#usr/include/kadm5/admin.h
|
||||
#usr/include/kadm5/chpass_util_strings.h
|
||||
#usr/include/kadm5/kadm_err.h
|
||||
#usr/include/kdb.h
|
||||
#usr/include/krad.h
|
||||
#usr/include/krb5
|
||||
#usr/include/krb5.h
|
||||
#usr/include/krb5/ccselect_plugin.h
|
||||
#usr/include/krb5/clpreauth_plugin.h
|
||||
#usr/include/krb5/hostrealm_plugin.h
|
||||
#usr/include/krb5/kadm5_hook_plugin.h
|
||||
#usr/include/krb5/kdcpreauth_plugin.h
|
||||
#usr/include/krb5/krb5.h
|
||||
#usr/include/krb5/localauth_plugin.h
|
||||
#usr/include/krb5/locate_plugin.h
|
||||
#usr/include/krb5/plugin.h
|
||||
#usr/include/krb5/preauth_plugin.h
|
||||
#usr/include/krb5/pwqual_plugin.h
|
||||
#usr/include/profile.h
|
||||
#usr/include/verto-module.h
|
||||
#usr/include/verto.h
|
||||
usr/lib/krb5
|
||||
usr/lib/krb5/plugins
|
||||
usr/lib/krb5/plugins/authdata
|
||||
usr/lib/krb5/plugins/kdb
|
||||
usr/lib/krb5/plugins/kdb/db2.so
|
||||
usr/lib/krb5/plugins/libkrb5
|
||||
usr/lib/krb5/plugins/preauth
|
||||
usr/lib/krb5/plugins/preauth/otp.so
|
||||
usr/lib/krb5/plugins/preauth/pkinit.so
|
||||
#usr/lib/libgssapi_krb5.so
|
||||
usr/lib/libgssapi_krb5.so.2
|
||||
usr/lib/libgssapi_krb5.so.2.2
|
||||
#usr/lib/libgssrpc.so
|
||||
usr/lib/libgssrpc.so.4
|
||||
usr/lib/libgssrpc.so.4.2
|
||||
#usr/lib/libk5crypto.so
|
||||
usr/lib/libk5crypto.so.3
|
||||
usr/lib/libk5crypto.so.3.1
|
||||
#usr/lib/libkadm5clnt.so
|
||||
#usr/lib/libkadm5clnt_mit.so
|
||||
usr/lib/libkadm5clnt_mit.so.9
|
||||
usr/lib/libkadm5clnt_mit.so.9.0
|
||||
#usr/lib/libkadm5srv.so
|
||||
#usr/lib/libkadm5srv_mit.so
|
||||
usr/lib/libkadm5srv_mit.so.9
|
||||
usr/lib/libkadm5srv_mit.so.9.0
|
||||
#usr/lib/libkdb5.so
|
||||
usr/lib/libkdb5.so.7
|
||||
usr/lib/libkdb5.so.7.0
|
||||
#usr/lib/libkrad.so
|
||||
usr/lib/libkrad.so.0
|
||||
usr/lib/libkrad.so.0.0
|
||||
#usr/lib/libkrb5.so
|
||||
usr/lib/libkrb5.so.3
|
||||
usr/lib/libkrb5.so.3.3
|
||||
#usr/lib/libkrb5support.so
|
||||
usr/lib/libkrb5support.so.0
|
||||
usr/lib/libkrb5support.so.0.1
|
||||
#usr/lib/libverto.so
|
||||
usr/lib/libverto.so.0
|
||||
usr/lib/libverto.so.0.0
|
||||
#usr/lib/pkgconfig/gssrpc.pc
|
||||
#usr/lib/pkgconfig/kadm-client.pc
|
||||
#usr/lib/pkgconfig/kadm-server.pc
|
||||
#usr/lib/pkgconfig/kdb.pc
|
||||
#usr/lib/pkgconfig/krb5-gssapi.pc
|
||||
#usr/lib/pkgconfig/krb5.pc
|
||||
#usr/lib/pkgconfig/mit-krb5-gssapi.pc
|
||||
#usr/lib/pkgconfig/mit-krb5.pc
|
||||
#usr/sbin/gss-server
|
||||
#usr/sbin/kadmin.local
|
||||
#usr/sbin/kadmind
|
||||
#usr/sbin/kdb5_util
|
||||
#usr/sbin/kprop
|
||||
#usr/sbin/kpropd
|
||||
#usr/sbin/kproplog
|
||||
#usr/sbin/krb5-send-pr
|
||||
#usr/sbin/krb5kdc
|
||||
#usr/sbin/sim_server
|
||||
#usr/sbin/sserver
|
||||
#usr/sbin/uuserver
|
||||
#usr/share/examples
|
||||
#usr/share/examples/krb5
|
||||
#usr/share/examples/krb5/kdc.conf
|
||||
#usr/share/examples/krb5/krb5.conf
|
||||
#usr/share/examples/krb5/services.append
|
||||
#usr/share/gnats
|
||||
#usr/share/gnats/mit
|
||||
#usr/share/locale/en_US
|
||||
#usr/share/locale/en_US/LC_MESSAGES
|
||||
#usr/share/locale/en_US/LC_MESSAGES/mit-krb5.mo
|
||||
#usr/share/man/cat1
|
||||
#usr/share/man/cat5
|
||||
#usr/share/man/cat8
|
||||
#usr/share/man/man1/k5srvutil.1
|
||||
#usr/share/man/man1/kadmin.1
|
||||
#usr/share/man/man1/kdestroy.1
|
||||
#usr/share/man/man1/kinit.1
|
||||
#usr/share/man/man1/klist.1
|
||||
#usr/share/man/man1/kpasswd.1
|
||||
#usr/share/man/man1/krb5-config.1
|
||||
#usr/share/man/man1/krb5-send-pr.1
|
||||
#usr/share/man/man1/ksu.1
|
||||
#usr/share/man/man1/kswitch.1
|
||||
#usr/share/man/man1/ktutil.1
|
||||
#usr/share/man/man1/kvno.1
|
||||
#usr/share/man/man1/sclient.1
|
||||
#usr/share/man/man5/.k5identity.5
|
||||
#usr/share/man/man5/.k5login.5
|
||||
#usr/share/man/man5/k5identity.5
|
||||
#usr/share/man/man5/k5login.5
|
||||
#usr/share/man/man5/kadm5.acl.5
|
||||
#usr/share/man/man5/kdc.conf.5
|
||||
#usr/share/man/man5/krb5.conf.5
|
||||
#usr/share/man/man8/kadmin.local.8
|
||||
#usr/share/man/man8/kadmind.8
|
||||
#usr/share/man/man8/kdb5_ldap_util.8
|
||||
#usr/share/man/man8/kdb5_util.8
|
||||
#usr/share/man/man8/kprop.8
|
||||
#usr/share/man/man8/kpropd.8
|
||||
#usr/share/man/man8/kproplog.8
|
||||
#usr/share/man/man8/krb5kdc.8
|
||||
#usr/share/man/man8/sserver.8
|
||||
var/lib/krb5kdc
|
||||
@@ -1,3 +1,15 @@
|
||||
etc/rc.d/init.d/minidlna
|
||||
etc/minidlna.conf
|
||||
usr/sbin/minidlna
|
||||
usr/sbin/minidlnad
|
||||
#usr/share/locale/da/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/de/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/es/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/fr/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/it/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/ja/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/nb/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/nl/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/pl/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/ru/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/sl/LC_MESSAGES/minidlna.mo
|
||||
#usr/share/locale/sv/LC_MESSAGES/minidlna.mo
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -10,11 +10,16 @@
|
||||
#usr/include/parted/parted.h
|
||||
#usr/include/parted/timer.h
|
||||
#usr/include/parted/unit.h
|
||||
#usr/lib/libparted-fs-resize.a
|
||||
#usr/lib/libparted-fs-resize.la
|
||||
#usr/lib/libparted-fs-resize.so
|
||||
usr/lib/libparted-fs-resize.so.0
|
||||
usr/lib/libparted-fs-resize.so.0.0.0
|
||||
#usr/lib/libparted.a
|
||||
#usr/lib/libparted.la
|
||||
#usr/lib/libparted.so
|
||||
usr/lib/libparted.so.0
|
||||
usr/lib/libparted.so.0.0.1
|
||||
usr/lib/libparted.so.2
|
||||
usr/lib/libparted.so.2.0.0
|
||||
#usr/lib/pkgconfig/libparted.pc
|
||||
usr/sbin/parted
|
||||
usr/sbin/partprobe
|
||||
@@ -38,6 +43,8 @@ usr/sbin/partprobe
|
||||
#usr/share/locale/ru/LC_MESSAGES/parted.mo
|
||||
#usr/share/locale/rw/LC_MESSAGES/parted.mo
|
||||
#usr/share/locale/sk/LC_MESSAGES/parted.mo
|
||||
#usr/share/locale/sl/LC_MESSAGES/parted.mo
|
||||
#usr/share/locale/sr/LC_MESSAGES/parted.mo
|
||||
#usr/share/locale/sv/LC_MESSAGES/parted.mo
|
||||
#usr/share/locale/tr/LC_MESSAGES/parted.mo
|
||||
#usr/share/locale/uk/LC_MESSAGES/parted.mo
|
||||
|
||||
176
config/rootfiles/packages/perl-PDF-API2
Normal file
176
config/rootfiles/packages/perl-PDF-API2
Normal file
@@ -0,0 +1,176 @@
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Annotation.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Array.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Bool.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Dict.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/File.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Filter
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Filter.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Filter/ASCII85Decode.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Filter/ASCIIHexDecode.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Filter/FlateDecode.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Filter/LZWDecode.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Filter/RunLengthDecode.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Literal.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Name.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Null.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Number.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Objind.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Page.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Pages.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/String.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Basic/PDF/Utils.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Content
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Content.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Content/Text.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Lite.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Matrix.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/NamedDestination.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Outline.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Outlines.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Page.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/BaseFont.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CJKFont
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CJKFont.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CJKFont/adobemingstdlightacro.data
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CJKFont/adobemyungjostdmediumacro.data
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CJKFont/adobesongstdlightacro.data
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CJKFont/kozgopromediumacro.data
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CJKFont/kozminproregularacro.data
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CMap
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CMap/japanese.cmap
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CMap/korean.cmap
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CMap/simplified.cmap
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/CMap/traditional.cmap
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/TrueType
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/TrueType.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/ColorSpace
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/ColorSpace.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/ColorSpace/DeviceN.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/ColorSpace/Indexed
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/ColorSpace/Indexed.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/ColorSpace/Indexed/ACTFile.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/ColorSpace/Indexed/Hue.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/ColorSpace/Indexed/WebColor.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/ColorSpace/Separation.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Colors.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/ExtGState.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/BdFont.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/bankgothic.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/courier.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/courierbold.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/courierboldoblique.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/courieroblique.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/georgia.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/georgiabold.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/georgiabolditalic.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/georgiaitalic.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/helvetica.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/helveticabold.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/helveticaboldoblique.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/helveticaoblique.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/symbol.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/timesbold.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/timesbolditalic.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/timesitalic.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/timesroman.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/trebuchet.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/trebuchetbold.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/trebuchetbolditalic.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/trebuchetitalic.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/verdana.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/verdanabold.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/verdanabolditalic.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/verdanaitalic.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/webdings.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/wingdings.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/CoreFont/zapfdingbats.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/Postscript.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Font/SynFont.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Glyphs.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/PaperSizes.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Pattern.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/Shading.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/UniFont.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Form
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Form.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Form/BarCode
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Form/BarCode.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Form/BarCode/codabar.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Form/BarCode/code128.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Form/BarCode/code3of9.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Form/BarCode/ean13.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Form/BarCode/int2of5.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Form/Hybrid.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Image
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Image.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Image/GD.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Image/GIF.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Image/JPEG.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Image/PNG.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Image/PNM.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/XObject/Image/TIFF.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Resource/uniglyph.txt
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/UniWrap.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Util.pm
|
||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Win32.pm
|
||||
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/PDF
|
||||
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/PDF/API2
|
||||
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/PDF/API2/.packlist
|
||||
#usr/share/man/man3/PDF::API2.3
|
||||
#usr/share/man/man3/PDF::API2::Annotation.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Array.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Bool.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Dict.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::File.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Filter.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Filter::RunLengthDecode.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Name.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Null.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Number.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Objind.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Page.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Pages.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::String.3
|
||||
#usr/share/man/man3/PDF::API2::Basic::PDF::Utils.3
|
||||
#usr/share/man/man3/PDF::API2::Content.3
|
||||
#usr/share/man/man3/PDF::API2::Lite.3
|
||||
#usr/share/man/man3/PDF::API2::NamedDestination.3
|
||||
#usr/share/man/man3/PDF::API2::Outline.3
|
||||
#usr/share/man/man3/PDF::API2::Page.3
|
||||
#usr/share/man/man3/PDF::API2::Resource.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::BaseFont.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::CIDFont.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::CIDFont::CJKFont.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::CIDFont::TrueType.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::ColorSpace.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::ColorSpace::Indexed::ACTFile.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::ColorSpace::Separation.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::ExtGState.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::Font.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::Font::BdFont.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::Font::CoreFont.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::Font::SynFont.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::UniFont.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::XObject.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::XObject::Form.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::XObject::Form::BarCode.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::XObject::Form::BarCode::code128.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::XObject::Image.3
|
||||
#usr/share/man/man3/PDF::API2::Resource::XObject::Image::TIFF.3
|
||||
#usr/share/man/man3/PDF::API2::Util.3
|
||||
@@ -219,10 +219,10 @@ var/ipfire/samba/shares
|
||||
var/ipfire/samba/smb.conf
|
||||
var/ipfire/samba/smb.conf.default
|
||||
var/lib/samba
|
||||
var/lib/samba/winbindd_privileged
|
||||
var/log/samba
|
||||
var/nmbd
|
||||
etc/rc.d/init.d/samba
|
||||
etc/rc.d/init.d/winbind
|
||||
srv/web/ipfire/cgi-bin/samba.cgi
|
||||
srv/web/ipfire/cgi-bin/sambahlp.cgi
|
||||
var/ipfire/menu.d/EX-samba.menu
|
||||
|
||||
14
config/rootfiles/packages/squid-accounting
Normal file
14
config/rootfiles/packages/squid-accounting
Normal file
@@ -0,0 +1,14 @@
|
||||
etc/fcron.hourly/squid-accounting
|
||||
srv/web/ipfire/cgi-bin/accounting.cgi
|
||||
#srv/web/ipfire/html/accounting
|
||||
srv/web/ipfire/html/accounting/logo
|
||||
usr/local/bin/acct.pl
|
||||
var/ipfire/accounting
|
||||
var/ipfire/accounting/acct-lib.pl
|
||||
var/ipfire/accounting/bill
|
||||
var/ipfire/accounting/dbinstall.pl
|
||||
var/ipfire/addon-lang/acct.de.pl
|
||||
var/ipfire/addon-lang/acct.en.pl
|
||||
var/ipfire/backup/addons/includes/squid-accounting
|
||||
var/ipfire/menu.d/EX-squid-accounting.menu
|
||||
var/log/accounting.log
|
||||
@@ -19,6 +19,7 @@ other usefull commands from the Dom0:
|
||||
- reset the fire: "xm destroy ipfire-xen"
|
||||
- look what is going on: "xm top" or "xm list"
|
||||
|
||||
This script can also build a Citrix XenCenter xva image.
|
||||
This script can also build a Citrix XenCenter xva image. (Need xz-aware
|
||||
xen version. Tested with Citrix Xen Server 6.2.5 beta)
|
||||
- run "XEN_IMG_TYPE=xva sh xen-image-maker.sh" to build an xva image.
|
||||
- import the vm with "xe vm-import file=ipfire.xfa"
|
||||
|
||||
@@ -21,6 +21,7 @@ WARNING: translation string unused: add-route
|
||||
WARNING: translation string unused: addon
|
||||
WARNING: translation string unused: admin user password has been changed
|
||||
WARNING: translation string unused: administrator user password
|
||||
WARNING: translation string unused: adsl settings
|
||||
WARNING: translation string unused: advproxy LDAP auth
|
||||
WARNING: translation string unused: advproxy NTLM auth
|
||||
WARNING: translation string unused: advproxy advanced proxy
|
||||
@@ -42,7 +43,6 @@ WARNING: translation string unused: advproxy no cre groups
|
||||
WARNING: translation string unused: advproxy ssadvanced proxy
|
||||
WARNING: translation string unused: advproxy update notification
|
||||
WARNING: translation string unused: again
|
||||
WARNING: translation string unused: age second
|
||||
WARNING: translation string unused: age seconds
|
||||
WARNING: translation string unused: age shour
|
||||
WARNING: translation string unused: age sminute
|
||||
@@ -237,7 +237,6 @@ WARNING: translation string unused: fwhost Custom Host
|
||||
WARNING: translation string unused: fwhost Custom Network
|
||||
WARNING: translation string unused: fwhost IpSec Host
|
||||
WARNING: translation string unused: fwhost IpSec Network
|
||||
WARNING: translation string unused: fwhost OpenVPN N-2-N
|
||||
WARNING: translation string unused: fwhost OpenVPN static host
|
||||
WARNING: translation string unused: fwhost OpenVPN static network
|
||||
WARNING: translation string unused: fwhost Standard Network
|
||||
@@ -247,6 +246,7 @@ WARNING: translation string unused: fwhost changeremark
|
||||
WARNING: translation string unused: fwhost err addrgrp
|
||||
WARNING: translation string unused: fwhost err hostorip
|
||||
WARNING: translation string unused: fwhost err mac
|
||||
WARNING: translation string unused: fwhost err partofnet
|
||||
WARNING: translation string unused: fwhost green
|
||||
WARNING: translation string unused: fwhost hosts
|
||||
WARNING: translation string unused: fwhost ipadr
|
||||
|
||||
@@ -20,6 +20,7 @@ WARNING: translation string unused: add xtaccess
|
||||
WARNING: translation string unused: add-route
|
||||
WARNING: translation string unused: admin user password has been changed
|
||||
WARNING: translation string unused: administrator user password
|
||||
WARNING: translation string unused: adsl settings
|
||||
WARNING: translation string unused: advproxy LDAP auth
|
||||
WARNING: translation string unused: advproxy NTLM auth
|
||||
WARNING: translation string unused: advproxy advanced proxy
|
||||
@@ -42,7 +43,6 @@ WARNING: translation string unused: advproxy ssadvanced proxy
|
||||
WARNING: translation string unused: advproxy update information
|
||||
WARNING: translation string unused: advproxy update notification
|
||||
WARNING: translation string unused: again
|
||||
WARNING: translation string unused: age second
|
||||
WARNING: translation string unused: age seconds
|
||||
WARNING: translation string unused: age shour
|
||||
WARNING: translation string unused: age sminute
|
||||
@@ -260,7 +260,6 @@ WARNING: translation string unused: fwhost Custom Host
|
||||
WARNING: translation string unused: fwhost Custom Network
|
||||
WARNING: translation string unused: fwhost IpSec Host
|
||||
WARNING: translation string unused: fwhost IpSec Network
|
||||
WARNING: translation string unused: fwhost OpenVPN N-2-N
|
||||
WARNING: translation string unused: fwhost OpenVPN static host
|
||||
WARNING: translation string unused: fwhost OpenVPN static network
|
||||
WARNING: translation string unused: fwhost Standard Network
|
||||
@@ -270,6 +269,7 @@ WARNING: translation string unused: fwhost changeremark
|
||||
WARNING: translation string unused: fwhost err addrgrp
|
||||
WARNING: translation string unused: fwhost err hostorip
|
||||
WARNING: translation string unused: fwhost err mac
|
||||
WARNING: translation string unused: fwhost err partofnet
|
||||
WARNING: translation string unused: fwhost green
|
||||
WARNING: translation string unused: fwhost hosts
|
||||
WARNING: translation string unused: fwhost ipadr
|
||||
|
||||
@@ -594,11 +594,19 @@ WARNING: untranslated string: Number of Countries for the pie chart
|
||||
WARNING: untranslated string: Scan for Songs
|
||||
WARNING: untranslated string: Set time on boot
|
||||
WARNING: untranslated string: addons
|
||||
WARNING: untranslated string: administrator password
|
||||
WARNING: untranslated string: administrator username
|
||||
WARNING: untranslated string: advproxy AUTH method ntlm
|
||||
WARNING: untranslated string: advproxy AUTH method ntlm auth
|
||||
WARNING: untranslated string: advproxy basic authentication
|
||||
WARNING: untranslated string: advproxy cache-digest
|
||||
WARNING: untranslated string: advproxy errmsg cache
|
||||
WARNING: untranslated string: advproxy errmsg invalid upstream proxy
|
||||
WARNING: untranslated string: advproxy errmsg proxy ports equal
|
||||
WARNING: untranslated string: advproxy group access control
|
||||
WARNING: untranslated string: advproxy group required
|
||||
WARNING: untranslated string: advproxy proxy port transparent
|
||||
WARNING: untranslated string: age second
|
||||
WARNING: untranslated string: atm device
|
||||
WARNING: untranslated string: attention
|
||||
WARNING: untranslated string: bit
|
||||
@@ -723,9 +731,11 @@ WARNING: untranslated string: fwdfw dnat nochoice
|
||||
WARNING: untranslated string: fwdfw dnat porterr
|
||||
WARNING: untranslated string: fwdfw dnat porterr2
|
||||
WARNING: untranslated string: fwdfw edit
|
||||
WARNING: untranslated string: fwdfw err concon
|
||||
WARNING: untranslated string: fwdfw err nosrc
|
||||
WARNING: untranslated string: fwdfw err notgt
|
||||
WARNING: untranslated string: fwdfw err prot_port
|
||||
WARNING: untranslated string: fwdfw err ratecon
|
||||
WARNING: untranslated string: fwdfw err remark
|
||||
WARNING: untranslated string: fwdfw err ruleexists
|
||||
WARNING: untranslated string: fwdfw err same
|
||||
@@ -741,12 +751,15 @@ WARNING: untranslated string: fwdfw hint ip1
|
||||
WARNING: untranslated string: fwdfw hint ip2
|
||||
WARNING: untranslated string: fwdfw hint mac
|
||||
WARNING: untranslated string: fwdfw iface
|
||||
WARNING: untranslated string: fwdfw limitconcon
|
||||
WARNING: untranslated string: fwdfw log
|
||||
WARNING: untranslated string: fwdfw log rule
|
||||
WARNING: untranslated string: fwdfw many
|
||||
WARNING: untranslated string: fwdfw maxconcon
|
||||
WARNING: untranslated string: fwdfw movedown
|
||||
WARNING: untranslated string: fwdfw moveup
|
||||
WARNING: untranslated string: fwdfw newrule
|
||||
WARNING: untranslated string: fwdfw numcon
|
||||
WARNING: untranslated string: fwdfw pol allow
|
||||
WARNING: untranslated string: fwdfw pol block
|
||||
WARNING: untranslated string: fwdfw pol text
|
||||
@@ -754,6 +767,7 @@ WARNING: untranslated string: fwdfw pol text1
|
||||
WARNING: untranslated string: fwdfw pol title
|
||||
WARNING: untranslated string: fwdfw prot41
|
||||
WARNING: untranslated string: fwdfw prot41 short
|
||||
WARNING: untranslated string: fwdfw ratelimit
|
||||
WARNING: untranslated string: fwdfw red
|
||||
WARNING: untranslated string: fwdfw reread
|
||||
WARNING: untranslated string: fwdfw rule activate
|
||||
@@ -778,6 +792,7 @@ WARNING: untranslated string: fwdfw wd_sun
|
||||
WARNING: untranslated string: fwdfw wd_thu
|
||||
WARNING: untranslated string: fwdfw wd_tue
|
||||
WARNING: untranslated string: fwdfw wd_wed
|
||||
WARNING: untranslated string: fwhost OpenVPN N-2-N
|
||||
WARNING: untranslated string: fwhost addgrp
|
||||
WARNING: untranslated string: fwhost addgrpname
|
||||
WARNING: untranslated string: fwhost addhost
|
||||
@@ -818,7 +833,6 @@ WARNING: untranslated string: fwhost err name
|
||||
WARNING: untranslated string: fwhost err name1
|
||||
WARNING: untranslated string: fwhost err net
|
||||
WARNING: untranslated string: fwhost err netexist
|
||||
WARNING: untranslated string: fwhost err partofnet
|
||||
WARNING: untranslated string: fwhost err port
|
||||
WARNING: untranslated string: fwhost err remark
|
||||
WARNING: untranslated string: fwhost err srv exists
|
||||
@@ -860,7 +874,14 @@ WARNING: untranslated string: last
|
||||
WARNING: untranslated string: least preferred
|
||||
WARNING: untranslated string: lifetime
|
||||
WARNING: untranslated string: mac filter
|
||||
WARNING: untranslated string: masquerade blue
|
||||
WARNING: untranslated string: masquerade green
|
||||
WARNING: untranslated string: masquerade orange
|
||||
WARNING: untranslated string: masquerading
|
||||
WARNING: untranslated string: masquerading disabled
|
||||
WARNING: untranslated string: masquerading enabled
|
||||
WARNING: untranslated string: maximum
|
||||
WARNING: untranslated string: messages
|
||||
WARNING: untranslated string: minimum
|
||||
WARNING: untranslated string: minute
|
||||
WARNING: untranslated string: model
|
||||
@@ -932,6 +953,8 @@ WARNING: untranslated string: route config changed
|
||||
WARNING: untranslated string: routing config added
|
||||
WARNING: untranslated string: routing config changed
|
||||
WARNING: untranslated string: routing table
|
||||
WARNING: untranslated string: samba join a domain
|
||||
WARNING: untranslated string: samba join domain
|
||||
WARNING: untranslated string: server restart
|
||||
WARNING: untranslated string: show dh
|
||||
WARNING: untranslated string: show tls-auth key
|
||||
|
||||
@@ -604,11 +604,19 @@ WARNING: untranslated string: MTU settings
|
||||
WARNING: untranslated string: Number of Countries for the pie chart
|
||||
WARNING: untranslated string: Scan for Songs
|
||||
WARNING: untranslated string: addons
|
||||
WARNING: untranslated string: administrator password
|
||||
WARNING: untranslated string: administrator username
|
||||
WARNING: untranslated string: advproxy AUTH method ntlm
|
||||
WARNING: untranslated string: advproxy AUTH method ntlm auth
|
||||
WARNING: untranslated string: advproxy basic authentication
|
||||
WARNING: untranslated string: advproxy cache-digest
|
||||
WARNING: untranslated string: advproxy errmsg cache
|
||||
WARNING: untranslated string: advproxy errmsg invalid upstream proxy
|
||||
WARNING: untranslated string: advproxy errmsg proxy ports equal
|
||||
WARNING: untranslated string: advproxy group access control
|
||||
WARNING: untranslated string: advproxy group required
|
||||
WARNING: untranslated string: advproxy proxy port transparent
|
||||
WARNING: untranslated string: age second
|
||||
WARNING: untranslated string: atm device
|
||||
WARNING: untranslated string: attention
|
||||
WARNING: untranslated string: bit
|
||||
@@ -734,9 +742,11 @@ WARNING: untranslated string: fwdfw dnat nochoice
|
||||
WARNING: untranslated string: fwdfw dnat porterr
|
||||
WARNING: untranslated string: fwdfw dnat porterr2
|
||||
WARNING: untranslated string: fwdfw edit
|
||||
WARNING: untranslated string: fwdfw err concon
|
||||
WARNING: untranslated string: fwdfw err nosrc
|
||||
WARNING: untranslated string: fwdfw err notgt
|
||||
WARNING: untranslated string: fwdfw err prot_port
|
||||
WARNING: untranslated string: fwdfw err ratecon
|
||||
WARNING: untranslated string: fwdfw err remark
|
||||
WARNING: untranslated string: fwdfw err ruleexists
|
||||
WARNING: untranslated string: fwdfw err same
|
||||
@@ -752,12 +762,15 @@ WARNING: untranslated string: fwdfw hint ip1
|
||||
WARNING: untranslated string: fwdfw hint ip2
|
||||
WARNING: untranslated string: fwdfw hint mac
|
||||
WARNING: untranslated string: fwdfw iface
|
||||
WARNING: untranslated string: fwdfw limitconcon
|
||||
WARNING: untranslated string: fwdfw log
|
||||
WARNING: untranslated string: fwdfw log rule
|
||||
WARNING: untranslated string: fwdfw many
|
||||
WARNING: untranslated string: fwdfw maxconcon
|
||||
WARNING: untranslated string: fwdfw movedown
|
||||
WARNING: untranslated string: fwdfw moveup
|
||||
WARNING: untranslated string: fwdfw newrule
|
||||
WARNING: untranslated string: fwdfw numcon
|
||||
WARNING: untranslated string: fwdfw pol allow
|
||||
WARNING: untranslated string: fwdfw pol block
|
||||
WARNING: untranslated string: fwdfw pol text
|
||||
@@ -765,6 +778,7 @@ WARNING: untranslated string: fwdfw pol text1
|
||||
WARNING: untranslated string: fwdfw pol title
|
||||
WARNING: untranslated string: fwdfw prot41
|
||||
WARNING: untranslated string: fwdfw prot41 short
|
||||
WARNING: untranslated string: fwdfw ratelimit
|
||||
WARNING: untranslated string: fwdfw red
|
||||
WARNING: untranslated string: fwdfw reread
|
||||
WARNING: untranslated string: fwdfw rule activate
|
||||
@@ -789,6 +803,7 @@ WARNING: untranslated string: fwdfw wd_sun
|
||||
WARNING: untranslated string: fwdfw wd_thu
|
||||
WARNING: untranslated string: fwdfw wd_tue
|
||||
WARNING: untranslated string: fwdfw wd_wed
|
||||
WARNING: untranslated string: fwhost OpenVPN N-2-N
|
||||
WARNING: untranslated string: fwhost addgrp
|
||||
WARNING: untranslated string: fwhost addgrpname
|
||||
WARNING: untranslated string: fwhost addhost
|
||||
@@ -829,7 +844,6 @@ WARNING: untranslated string: fwhost err name
|
||||
WARNING: untranslated string: fwhost err name1
|
||||
WARNING: untranslated string: fwhost err net
|
||||
WARNING: untranslated string: fwhost err netexist
|
||||
WARNING: untranslated string: fwhost err partofnet
|
||||
WARNING: untranslated string: fwhost err port
|
||||
WARNING: untranslated string: fwhost err remark
|
||||
WARNING: untranslated string: fwhost err srv exists
|
||||
@@ -871,7 +885,14 @@ WARNING: untranslated string: last
|
||||
WARNING: untranslated string: least preferred
|
||||
WARNING: untranslated string: lifetime
|
||||
WARNING: untranslated string: mac filter
|
||||
WARNING: untranslated string: masquerade blue
|
||||
WARNING: untranslated string: masquerade green
|
||||
WARNING: untranslated string: masquerade orange
|
||||
WARNING: untranslated string: masquerading
|
||||
WARNING: untranslated string: masquerading disabled
|
||||
WARNING: untranslated string: masquerading enabled
|
||||
WARNING: untranslated string: maximum
|
||||
WARNING: untranslated string: messages
|
||||
WARNING: untranslated string: minimum
|
||||
WARNING: untranslated string: minute
|
||||
WARNING: untranslated string: model
|
||||
@@ -939,6 +960,8 @@ WARNING: untranslated string: route config changed
|
||||
WARNING: untranslated string: routing config added
|
||||
WARNING: untranslated string: routing config changed
|
||||
WARNING: untranslated string: routing table
|
||||
WARNING: untranslated string: samba join a domain
|
||||
WARNING: untranslated string: samba join domain
|
||||
WARNING: untranslated string: server restart
|
||||
WARNING: untranslated string: show dh
|
||||
WARNING: untranslated string: show tls-auth key
|
||||
|
||||
@@ -43,7 +43,6 @@ WARNING: translation string unused: advproxy ssadvanced proxy
|
||||
WARNING: translation string unused: advproxy update information
|
||||
WARNING: translation string unused: advproxy update notification
|
||||
WARNING: translation string unused: again
|
||||
WARNING: translation string unused: age second
|
||||
WARNING: translation string unused: age seconds
|
||||
WARNING: translation string unused: age shour
|
||||
WARNING: translation string unused: age sminute
|
||||
@@ -260,7 +259,6 @@ WARNING: translation string unused: fwhost Custom Host
|
||||
WARNING: translation string unused: fwhost Custom Network
|
||||
WARNING: translation string unused: fwhost IpSec Host
|
||||
WARNING: translation string unused: fwhost IpSec Network
|
||||
WARNING: translation string unused: fwhost OpenVPN N-2-N
|
||||
WARNING: translation string unused: fwhost OpenVPN static host
|
||||
WARNING: translation string unused: fwhost OpenVPN static network
|
||||
WARNING: translation string unused: fwhost Standard Network
|
||||
@@ -270,6 +268,7 @@ WARNING: translation string unused: fwhost changeremark
|
||||
WARNING: translation string unused: fwhost err addrgrp
|
||||
WARNING: translation string unused: fwhost err hostorip
|
||||
WARNING: translation string unused: fwhost err mac
|
||||
WARNING: translation string unused: fwhost err partofnet
|
||||
WARNING: translation string unused: fwhost green
|
||||
WARNING: translation string unused: fwhost hosts
|
||||
WARNING: translation string unused: fwhost ipadr
|
||||
@@ -661,6 +660,13 @@ WARNING: translation string unused: yearly firewallhits
|
||||
WARNING: untranslated string: MTU settings
|
||||
WARNING: untranslated string: Number of Countries for the pie chart
|
||||
WARNING: untranslated string: Scan for Songs
|
||||
WARNING: untranslated string: administrator password
|
||||
WARNING: untranslated string: administrator username
|
||||
WARNING: untranslated string: advproxy AUTH method ntlm
|
||||
WARNING: untranslated string: advproxy AUTH method ntlm auth
|
||||
WARNING: untranslated string: advproxy basic authentication
|
||||
WARNING: untranslated string: advproxy group access control
|
||||
WARNING: untranslated string: advproxy group required
|
||||
WARNING: untranslated string: atm device
|
||||
WARNING: untranslated string: bytes
|
||||
WARNING: untranslated string: capabilities
|
||||
@@ -678,11 +684,24 @@ WARNING: untranslated string: dnssec validating
|
||||
WARNING: untranslated string: download tls-auth key
|
||||
WARNING: untranslated string: drop outgoing
|
||||
WARNING: untranslated string: firewall logs country
|
||||
WARNING: untranslated string: fwdfw err concon
|
||||
WARNING: untranslated string: fwdfw err ratecon
|
||||
WARNING: untranslated string: fwdfw limitconcon
|
||||
WARNING: untranslated string: fwdfw maxconcon
|
||||
WARNING: untranslated string: fwdfw numcon
|
||||
WARNING: untranslated string: fwdfw ratelimit
|
||||
WARNING: untranslated string: fwhost err hostip
|
||||
WARNING: untranslated string: gen dh
|
||||
WARNING: untranslated string: generate dh key
|
||||
WARNING: untranslated string: imei
|
||||
WARNING: untranslated string: imsi
|
||||
WARNING: untranslated string: masquerade blue
|
||||
WARNING: untranslated string: masquerade green
|
||||
WARNING: untranslated string: masquerade orange
|
||||
WARNING: untranslated string: masquerading
|
||||
WARNING: untranslated string: masquerading disabled
|
||||
WARNING: untranslated string: masquerading enabled
|
||||
WARNING: untranslated string: messages
|
||||
WARNING: untranslated string: model
|
||||
WARNING: untranslated string: modem hardware details
|
||||
WARNING: untranslated string: modem information
|
||||
@@ -712,6 +731,8 @@ WARNING: untranslated string: route config changed
|
||||
WARNING: untranslated string: routing config added
|
||||
WARNING: untranslated string: routing config changed
|
||||
WARNING: untranslated string: routing table
|
||||
WARNING: untranslated string: samba join a domain
|
||||
WARNING: untranslated string: samba join domain
|
||||
WARNING: untranslated string: show dh
|
||||
WARNING: untranslated string: show tls-auth key
|
||||
WARNING: untranslated string: software version
|
||||
|
||||
@@ -594,11 +594,19 @@ WARNING: untranslated string: Number of Countries for the pie chart
|
||||
WARNING: untranslated string: Scan for Songs
|
||||
WARNING: untranslated string: Set time on boot
|
||||
WARNING: untranslated string: addons
|
||||
WARNING: untranslated string: administrator password
|
||||
WARNING: untranslated string: administrator username
|
||||
WARNING: untranslated string: advproxy AUTH method ntlm
|
||||
WARNING: untranslated string: advproxy AUTH method ntlm auth
|
||||
WARNING: untranslated string: advproxy basic authentication
|
||||
WARNING: untranslated string: advproxy cache-digest
|
||||
WARNING: untranslated string: advproxy errmsg cache
|
||||
WARNING: untranslated string: advproxy errmsg invalid upstream proxy
|
||||
WARNING: untranslated string: advproxy errmsg proxy ports equal
|
||||
WARNING: untranslated string: advproxy group access control
|
||||
WARNING: untranslated string: advproxy group required
|
||||
WARNING: untranslated string: advproxy proxy port transparent
|
||||
WARNING: untranslated string: age second
|
||||
WARNING: untranslated string: atm device
|
||||
WARNING: untranslated string: attention
|
||||
WARNING: untranslated string: bit
|
||||
@@ -723,9 +731,11 @@ WARNING: untranslated string: fwdfw dnat nochoice
|
||||
WARNING: untranslated string: fwdfw dnat porterr
|
||||
WARNING: untranslated string: fwdfw dnat porterr2
|
||||
WARNING: untranslated string: fwdfw edit
|
||||
WARNING: untranslated string: fwdfw err concon
|
||||
WARNING: untranslated string: fwdfw err nosrc
|
||||
WARNING: untranslated string: fwdfw err notgt
|
||||
WARNING: untranslated string: fwdfw err prot_port
|
||||
WARNING: untranslated string: fwdfw err ratecon
|
||||
WARNING: untranslated string: fwdfw err remark
|
||||
WARNING: untranslated string: fwdfw err ruleexists
|
||||
WARNING: untranslated string: fwdfw err same
|
||||
@@ -741,12 +751,15 @@ WARNING: untranslated string: fwdfw hint ip1
|
||||
WARNING: untranslated string: fwdfw hint ip2
|
||||
WARNING: untranslated string: fwdfw hint mac
|
||||
WARNING: untranslated string: fwdfw iface
|
||||
WARNING: untranslated string: fwdfw limitconcon
|
||||
WARNING: untranslated string: fwdfw log
|
||||
WARNING: untranslated string: fwdfw log rule
|
||||
WARNING: untranslated string: fwdfw many
|
||||
WARNING: untranslated string: fwdfw maxconcon
|
||||
WARNING: untranslated string: fwdfw movedown
|
||||
WARNING: untranslated string: fwdfw moveup
|
||||
WARNING: untranslated string: fwdfw newrule
|
||||
WARNING: untranslated string: fwdfw numcon
|
||||
WARNING: untranslated string: fwdfw pol allow
|
||||
WARNING: untranslated string: fwdfw pol block
|
||||
WARNING: untranslated string: fwdfw pol text
|
||||
@@ -754,6 +767,7 @@ WARNING: untranslated string: fwdfw pol text1
|
||||
WARNING: untranslated string: fwdfw pol title
|
||||
WARNING: untranslated string: fwdfw prot41
|
||||
WARNING: untranslated string: fwdfw prot41 short
|
||||
WARNING: untranslated string: fwdfw ratelimit
|
||||
WARNING: untranslated string: fwdfw red
|
||||
WARNING: untranslated string: fwdfw reread
|
||||
WARNING: untranslated string: fwdfw rule activate
|
||||
@@ -778,6 +792,7 @@ WARNING: untranslated string: fwdfw wd_sun
|
||||
WARNING: untranslated string: fwdfw wd_thu
|
||||
WARNING: untranslated string: fwdfw wd_tue
|
||||
WARNING: untranslated string: fwdfw wd_wed
|
||||
WARNING: untranslated string: fwhost OpenVPN N-2-N
|
||||
WARNING: untranslated string: fwhost addgrp
|
||||
WARNING: untranslated string: fwhost addgrpname
|
||||
WARNING: untranslated string: fwhost addhost
|
||||
@@ -818,7 +833,6 @@ WARNING: untranslated string: fwhost err name
|
||||
WARNING: untranslated string: fwhost err name1
|
||||
WARNING: untranslated string: fwhost err net
|
||||
WARNING: untranslated string: fwhost err netexist
|
||||
WARNING: untranslated string: fwhost err partofnet
|
||||
WARNING: untranslated string: fwhost err port
|
||||
WARNING: untranslated string: fwhost err remark
|
||||
WARNING: untranslated string: fwhost err srv exists
|
||||
@@ -860,7 +874,14 @@ WARNING: untranslated string: last
|
||||
WARNING: untranslated string: least preferred
|
||||
WARNING: untranslated string: lifetime
|
||||
WARNING: untranslated string: mac filter
|
||||
WARNING: untranslated string: masquerade blue
|
||||
WARNING: untranslated string: masquerade green
|
||||
WARNING: untranslated string: masquerade orange
|
||||
WARNING: untranslated string: masquerading
|
||||
WARNING: untranslated string: masquerading disabled
|
||||
WARNING: untranslated string: masquerading enabled
|
||||
WARNING: untranslated string: maximum
|
||||
WARNING: untranslated string: messages
|
||||
WARNING: untranslated string: minimum
|
||||
WARNING: untranslated string: minute
|
||||
WARNING: untranslated string: model
|
||||
@@ -932,6 +953,8 @@ WARNING: untranslated string: route config changed
|
||||
WARNING: untranslated string: routing config added
|
||||
WARNING: untranslated string: routing config changed
|
||||
WARNING: untranslated string: routing table
|
||||
WARNING: untranslated string: samba join a domain
|
||||
WARNING: untranslated string: samba join domain
|
||||
WARNING: untranslated string: server restart
|
||||
WARNING: untranslated string: show dh
|
||||
WARNING: untranslated string: show tls-auth key
|
||||
|
||||
@@ -597,11 +597,19 @@ WARNING: untranslated string: MTU settings
|
||||
WARNING: untranslated string: Number of Countries for the pie chart
|
||||
WARNING: untranslated string: Scan for Songs
|
||||
WARNING: untranslated string: addons
|
||||
WARNING: untranslated string: administrator password
|
||||
WARNING: untranslated string: administrator username
|
||||
WARNING: untranslated string: advproxy AUTH method ntlm
|
||||
WARNING: untranslated string: advproxy AUTH method ntlm auth
|
||||
WARNING: untranslated string: advproxy basic authentication
|
||||
WARNING: untranslated string: advproxy cache-digest
|
||||
WARNING: untranslated string: advproxy errmsg cache
|
||||
WARNING: untranslated string: advproxy errmsg invalid upstream proxy
|
||||
WARNING: untranslated string: advproxy errmsg proxy ports equal
|
||||
WARNING: untranslated string: advproxy group access control
|
||||
WARNING: untranslated string: advproxy group required
|
||||
WARNING: untranslated string: advproxy proxy port transparent
|
||||
WARNING: untranslated string: age second
|
||||
WARNING: untranslated string: atm device
|
||||
WARNING: untranslated string: attention
|
||||
WARNING: untranslated string: bit
|
||||
@@ -718,9 +726,11 @@ WARNING: untranslated string: fwdfw dnat nochoice
|
||||
WARNING: untranslated string: fwdfw dnat porterr
|
||||
WARNING: untranslated string: fwdfw dnat porterr2
|
||||
WARNING: untranslated string: fwdfw edit
|
||||
WARNING: untranslated string: fwdfw err concon
|
||||
WARNING: untranslated string: fwdfw err nosrc
|
||||
WARNING: untranslated string: fwdfw err notgt
|
||||
WARNING: untranslated string: fwdfw err prot_port
|
||||
WARNING: untranslated string: fwdfw err ratecon
|
||||
WARNING: untranslated string: fwdfw err remark
|
||||
WARNING: untranslated string: fwdfw err ruleexists
|
||||
WARNING: untranslated string: fwdfw err same
|
||||
@@ -736,12 +746,15 @@ WARNING: untranslated string: fwdfw hint ip1
|
||||
WARNING: untranslated string: fwdfw hint ip2
|
||||
WARNING: untranslated string: fwdfw hint mac
|
||||
WARNING: untranslated string: fwdfw iface
|
||||
WARNING: untranslated string: fwdfw limitconcon
|
||||
WARNING: untranslated string: fwdfw log
|
||||
WARNING: untranslated string: fwdfw log rule
|
||||
WARNING: untranslated string: fwdfw many
|
||||
WARNING: untranslated string: fwdfw maxconcon
|
||||
WARNING: untranslated string: fwdfw movedown
|
||||
WARNING: untranslated string: fwdfw moveup
|
||||
WARNING: untranslated string: fwdfw newrule
|
||||
WARNING: untranslated string: fwdfw numcon
|
||||
WARNING: untranslated string: fwdfw pol allow
|
||||
WARNING: untranslated string: fwdfw pol block
|
||||
WARNING: untranslated string: fwdfw pol text
|
||||
@@ -749,6 +762,7 @@ WARNING: untranslated string: fwdfw pol text1
|
||||
WARNING: untranslated string: fwdfw pol title
|
||||
WARNING: untranslated string: fwdfw prot41
|
||||
WARNING: untranslated string: fwdfw prot41 short
|
||||
WARNING: untranslated string: fwdfw ratelimit
|
||||
WARNING: untranslated string: fwdfw red
|
||||
WARNING: untranslated string: fwdfw reread
|
||||
WARNING: untranslated string: fwdfw rule activate
|
||||
@@ -773,6 +787,7 @@ WARNING: untranslated string: fwdfw wd_sun
|
||||
WARNING: untranslated string: fwdfw wd_thu
|
||||
WARNING: untranslated string: fwdfw wd_tue
|
||||
WARNING: untranslated string: fwdfw wd_wed
|
||||
WARNING: untranslated string: fwhost OpenVPN N-2-N
|
||||
WARNING: untranslated string: fwhost addgrp
|
||||
WARNING: untranslated string: fwhost addgrpname
|
||||
WARNING: untranslated string: fwhost addhost
|
||||
@@ -813,7 +828,6 @@ WARNING: untranslated string: fwhost err name
|
||||
WARNING: untranslated string: fwhost err name1
|
||||
WARNING: untranslated string: fwhost err net
|
||||
WARNING: untranslated string: fwhost err netexist
|
||||
WARNING: untranslated string: fwhost err partofnet
|
||||
WARNING: untranslated string: fwhost err port
|
||||
WARNING: untranslated string: fwhost err remark
|
||||
WARNING: untranslated string: fwhost err srv exists
|
||||
@@ -856,7 +870,14 @@ WARNING: untranslated string: last
|
||||
WARNING: untranslated string: least preferred
|
||||
WARNING: untranslated string: lifetime
|
||||
WARNING: untranslated string: mac filter
|
||||
WARNING: untranslated string: masquerade blue
|
||||
WARNING: untranslated string: masquerade green
|
||||
WARNING: untranslated string: masquerade orange
|
||||
WARNING: untranslated string: masquerading
|
||||
WARNING: untranslated string: masquerading disabled
|
||||
WARNING: untranslated string: masquerading enabled
|
||||
WARNING: untranslated string: maximum
|
||||
WARNING: untranslated string: messages
|
||||
WARNING: untranslated string: minimum
|
||||
WARNING: untranslated string: minute
|
||||
WARNING: untranslated string: model
|
||||
@@ -922,6 +943,8 @@ WARNING: untranslated string: route config changed
|
||||
WARNING: untranslated string: routing config added
|
||||
WARNING: untranslated string: routing config changed
|
||||
WARNING: untranslated string: routing table
|
||||
WARNING: untranslated string: samba join a domain
|
||||
WARNING: untranslated string: samba join domain
|
||||
WARNING: untranslated string: server restart
|
||||
WARNING: untranslated string: show dh
|
||||
WARNING: untranslated string: show tls-auth key
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
WARNING: translation string unused: Client status and controlc
|
||||
WARNING: translation string unused: ConnSched scheduler
|
||||
WARNING: translation string unused: ConnSched select profile
|
||||
WARNING: translation string unused: HDD temperature
|
||||
@@ -21,6 +20,7 @@ WARNING: translation string unused: add xtaccess
|
||||
WARNING: translation string unused: add-route
|
||||
WARNING: translation string unused: admin user password has been changed
|
||||
WARNING: translation string unused: administrator user password
|
||||
WARNING: translation string unused: adsl settings
|
||||
WARNING: translation string unused: advproxy LDAP auth
|
||||
WARNING: translation string unused: advproxy NTLM auth
|
||||
WARNING: translation string unused: advproxy advanced proxy
|
||||
@@ -43,7 +43,6 @@ WARNING: translation string unused: advproxy ssadvanced proxy
|
||||
WARNING: translation string unused: advproxy update information
|
||||
WARNING: translation string unused: advproxy update notification
|
||||
WARNING: translation string unused: again
|
||||
WARNING: translation string unused: age second
|
||||
WARNING: translation string unused: age seconds
|
||||
WARNING: translation string unused: age shour
|
||||
WARNING: translation string unused: age sminute
|
||||
@@ -151,6 +150,7 @@ WARNING: translation string unused: destination ip bad
|
||||
WARNING: translation string unused: destination ip or net
|
||||
WARNING: translation string unused: destination net
|
||||
WARNING: translation string unused: destination port overlaps
|
||||
WARNING: translation string unused: dh name is invalid
|
||||
WARNING: translation string unused: dhcp base ip fixed lease
|
||||
WARNING: translation string unused: dhcp create fixed leases
|
||||
WARNING: translation string unused: dhcp fixed lease err1
|
||||
@@ -174,6 +174,7 @@ WARNING: translation string unused: do not log this port list
|
||||
WARNING: translation string unused: domain not set
|
||||
WARNING: translation string unused: donation-link
|
||||
WARNING: translation string unused: done
|
||||
WARNING: translation string unused: download dh parameter
|
||||
WARNING: translation string unused: driver
|
||||
WARNING: translation string unused: dstprt range overlaps
|
||||
WARNING: translation string unused: dstprt within existing
|
||||
@@ -259,7 +260,6 @@ WARNING: translation string unused: fwhost Custom Host
|
||||
WARNING: translation string unused: fwhost Custom Network
|
||||
WARNING: translation string unused: fwhost IpSec Host
|
||||
WARNING: translation string unused: fwhost IpSec Network
|
||||
WARNING: translation string unused: fwhost OpenVPN N-2-N
|
||||
WARNING: translation string unused: fwhost OpenVPN static host
|
||||
WARNING: translation string unused: fwhost OpenVPN static network
|
||||
WARNING: translation string unused: fwhost Standard Network
|
||||
@@ -269,6 +269,7 @@ WARNING: translation string unused: fwhost changeremark
|
||||
WARNING: translation string unused: fwhost err addrgrp
|
||||
WARNING: translation string unused: fwhost err hostorip
|
||||
WARNING: translation string unused: fwhost err mac
|
||||
WARNING: translation string unused: fwhost err partofnet
|
||||
WARNING: translation string unused: fwhost green
|
||||
WARNING: translation string unused: fwhost hosts
|
||||
WARNING: translation string unused: fwhost ipadr
|
||||
@@ -396,6 +397,7 @@ WARNING: translation string unused: network time
|
||||
WARNING: translation string unused: network traffic graphs
|
||||
WARNING: translation string unused: network updated
|
||||
WARNING: translation string unused: networks settings
|
||||
WARNING: translation string unused: never
|
||||
WARNING: translation string unused: new optionsfw must boot
|
||||
WARNING: translation string unused: no alcatelusb firmware
|
||||
WARNING: translation string unused: no cfg upload
|
||||
@@ -443,9 +445,10 @@ WARNING: translation string unused: outgoing firewall warning
|
||||
WARNING: translation string unused: override mtu
|
||||
WARNING: translation string unused: ovpn config
|
||||
WARNING: translation string unused: ovpn dl
|
||||
WARNING: translation string unused: ovpn engines
|
||||
WARNING: translation string unused: ovpn log
|
||||
WARNING: translation string unused: ovpn reneg sec
|
||||
WARNING: translation string unused: ovpn_fastio
|
||||
WARNING: translation string unused: ovpn_fragment
|
||||
WARNING: translation string unused: ovpn_mssfix
|
||||
WARNING: translation string unused: ovpn_mtudisc
|
||||
WARNING: translation string unused: ovpn_processprio
|
||||
@@ -557,6 +560,7 @@ WARNING: translation string unused: successfully refreshed updates list
|
||||
WARNING: translation string unused: system graphs
|
||||
WARNING: translation string unused: system log viewer
|
||||
WARNING: translation string unused: system status information
|
||||
WARNING: translation string unused: teovpn_fragment
|
||||
WARNING: translation string unused: test
|
||||
WARNING: translation string unused: test email could not be sent
|
||||
WARNING: translation string unused: test email was sent
|
||||
@@ -635,10 +639,6 @@ WARNING: translation string unused: urlfilter update information
|
||||
WARNING: translation string unused: urlfilter update notification
|
||||
WARNING: translation string unused: urlfilter update results
|
||||
WARNING: translation string unused: urlfilter upload background
|
||||
WARNING: translation string unused: usb modem on acm0
|
||||
WARNING: translation string unused: usb modem on acm1
|
||||
WARNING: translation string unused: usb modem on acm2
|
||||
WARNING: translation string unused: usb modem on acm3
|
||||
WARNING: translation string unused: use
|
||||
WARNING: translation string unused: use dov
|
||||
WARNING: translation string unused: use ibod
|
||||
@@ -661,60 +661,16 @@ WARNING: translation string unused: xtaccess all error
|
||||
WARNING: translation string unused: xtaccess bad transfert
|
||||
WARNING: translation string unused: year-graph
|
||||
WARNING: translation string unused: yearly firewallhits
|
||||
WARNING: untranslated string: MTU settings
|
||||
WARNING: untranslated string: Number of Countries for the pie chart
|
||||
WARNING: untranslated string: Scan for Songs
|
||||
WARNING: untranslated string: bytes
|
||||
WARNING: untranslated string: capabilities
|
||||
WARNING: untranslated string: default
|
||||
WARNING: untranslated string: dh
|
||||
WARNING: untranslated string: dh key move failed
|
||||
WARNING: untranslated string: dh key warn
|
||||
WARNING: untranslated string: dh key warn1
|
||||
WARNING: untranslated string: dh parameter
|
||||
WARNING: untranslated string: dnssec aware
|
||||
WARNING: untranslated string: dnssec information
|
||||
WARNING: untranslated string: dnssec not supported
|
||||
WARNING: untranslated string: dnssec validating
|
||||
WARNING: untranslated string: download tls-auth key
|
||||
WARNING: untranslated string: firewall logs country
|
||||
WARNING: untranslated string: fwdfw err concon
|
||||
WARNING: untranslated string: fwdfw err ratecon
|
||||
WARNING: untranslated string: fwdfw limitconcon
|
||||
WARNING: untranslated string: fwdfw maxconcon
|
||||
WARNING: untranslated string: fwdfw numcon
|
||||
WARNING: untranslated string: fwdfw ratelimit
|
||||
WARNING: untranslated string: fwhost err hostip
|
||||
WARNING: untranslated string: gen dh
|
||||
WARNING: untranslated string: generate dh key
|
||||
WARNING: untranslated string: imei
|
||||
WARNING: untranslated string: imsi
|
||||
WARNING: untranslated string: model
|
||||
WARNING: untranslated string: modem hardware details
|
||||
WARNING: untranslated string: modem information
|
||||
WARNING: untranslated string: modem network bit error rate
|
||||
WARNING: untranslated string: modem network information
|
||||
WARNING: untranslated string: modem network mode
|
||||
WARNING: untranslated string: modem network operator
|
||||
WARNING: untranslated string: modem network registration
|
||||
WARNING: untranslated string: modem network signal quality
|
||||
WARNING: untranslated string: modem no connection
|
||||
WARNING: untranslated string: modem no connection message
|
||||
WARNING: untranslated string: modem sim information
|
||||
WARNING: untranslated string: modem status
|
||||
WARNING: untranslated string: monitor interface
|
||||
WARNING: untranslated string: nameserver
|
||||
WARNING: untranslated string: not a valid dh key
|
||||
WARNING: untranslated string: ovpn crypt options
|
||||
WARNING: untranslated string: ovpn dh
|
||||
WARNING: untranslated string: ovpn dh new key
|
||||
WARNING: untranslated string: ovpn dh parameters
|
||||
WARNING: untranslated string: ovpn dh upload
|
||||
WARNING: untranslated string: ovpn generating the root and host certificates
|
||||
WARNING: untranslated string: ovpn ha
|
||||
WARNING: untranslated string: ovpn hmac
|
||||
WARNING: untranslated string: route config changed
|
||||
WARNING: untranslated string: routing config added
|
||||
WARNING: untranslated string: routing config changed
|
||||
WARNING: untranslated string: routing table
|
||||
WARNING: untranslated string: show dh
|
||||
WARNING: untranslated string: show tls-auth key
|
||||
WARNING: untranslated string: software version
|
||||
WARNING: untranslated string: source ip country
|
||||
WARNING: untranslated string: ta key
|
||||
WARNING: untranslated string: upload dh key
|
||||
WARNING: untranslated string: vendor
|
||||
|
||||
@@ -14,10 +14,18 @@
|
||||
# Checking cgi-bin translations for language: fr #
|
||||
############################################################################
|
||||
< addon
|
||||
< administrator password
|
||||
< administrator username
|
||||
< adsl settings
|
||||
< advproxy AUTH method ntlm
|
||||
< advproxy AUTH method ntlm auth
|
||||
< advproxy basic authentication
|
||||
< advproxy cache-digest
|
||||
< advproxy errmsg cache
|
||||
< advproxy errmsg invalid upstream proxy
|
||||
< advproxy errmsg proxy ports equal
|
||||
< advproxy group access control
|
||||
< advproxy group required
|
||||
< advproxy proxy port transparent
|
||||
< age second
|
||||
< age seconds
|
||||
@@ -151,12 +159,14 @@
|
||||
< fwdfw dnat porterr2
|
||||
< fwdfw DROP
|
||||
< fwdfw edit
|
||||
< fwdfw err concon
|
||||
< fwdfw err nosrc
|
||||
< fwdfw err nosrcip
|
||||
< fwdfw err notgt
|
||||
< fwdfw err notgtip
|
||||
< fwdfw err prot_port
|
||||
< fwdfw err prot_port1
|
||||
< fwdfw err ratecon
|
||||
< fwdfw err remark
|
||||
< fwdfw err ruleexists
|
||||
< fwdfw err same
|
||||
@@ -175,10 +185,12 @@
|
||||
< fwdfw hint mac
|
||||
< fwdfw iface
|
||||
< fwdfw ipsec network
|
||||
< fwdfw limitconcon
|
||||
< fwdfw log
|
||||
< fwdfw log rule
|
||||
< fwdfw man port
|
||||
< fwdfw many
|
||||
< fwdfw maxconcon
|
||||
< fwdfw menu
|
||||
< fwdfw MODE1
|
||||
< fwdfw MODE2
|
||||
@@ -186,6 +198,7 @@
|
||||
< fwdfw moveup
|
||||
< fwdfw natport used
|
||||
< fwdfw newrule
|
||||
< fwdfw numcon
|
||||
< fwdfw p2p txt
|
||||
< fwdfw pol allow
|
||||
< fwdfw pol block
|
||||
@@ -194,6 +207,7 @@
|
||||
< fwdfw pol title
|
||||
< fwdfw prot41
|
||||
< fwdfw prot41 short
|
||||
< fwdfw ratelimit
|
||||
< fwdfw red
|
||||
< fwdfw REJECT
|
||||
< fwdfw reread
|
||||
@@ -334,9 +348,16 @@
|
||||
< least preferred
|
||||
< lifetime
|
||||
< mac filter
|
||||
< masquerade blue
|
||||
< masquerade green
|
||||
< masquerade orange
|
||||
< masquerading
|
||||
< masquerading disabled
|
||||
< masquerading enabled
|
||||
< maximum
|
||||
< MB read
|
||||
< MB written
|
||||
< messages
|
||||
< minimum
|
||||
< minute
|
||||
< model
|
||||
@@ -407,6 +428,8 @@
|
||||
< qos enter bandwidths
|
||||
< random number generator daemon
|
||||
< red1
|
||||
< samba join a domain
|
||||
< samba join domain
|
||||
< server restart
|
||||
< show dh
|
||||
< snat new source ip address
|
||||
@@ -545,10 +568,18 @@
|
||||
# Checking cgi-bin translations for language: es #
|
||||
############################################################################
|
||||
< addon
|
||||
< administrator password
|
||||
< administrator username
|
||||
< adsl settings
|
||||
< advproxy AUTH method ntlm
|
||||
< advproxy AUTH method ntlm auth
|
||||
< advproxy basic authentication
|
||||
< advproxy cache-digest
|
||||
< advproxy errmsg cache
|
||||
< advproxy errmsg invalid upstream proxy
|
||||
< advproxy errmsg proxy ports equal
|
||||
< advproxy group access control
|
||||
< advproxy group required
|
||||
< advproxy proxy port transparent
|
||||
< age second
|
||||
< age seconds
|
||||
@@ -682,12 +713,14 @@
|
||||
< fwdfw dnat porterr2
|
||||
< fwdfw DROP
|
||||
< fwdfw edit
|
||||
< fwdfw err concon
|
||||
< fwdfw err nosrc
|
||||
< fwdfw err nosrcip
|
||||
< fwdfw err notgt
|
||||
< fwdfw err notgtip
|
||||
< fwdfw err prot_port
|
||||
< fwdfw err prot_port1
|
||||
< fwdfw err ratecon
|
||||
< fwdfw err remark
|
||||
< fwdfw err ruleexists
|
||||
< fwdfw err same
|
||||
@@ -706,10 +739,12 @@
|
||||
< fwdfw hint mac
|
||||
< fwdfw iface
|
||||
< fwdfw ipsec network
|
||||
< fwdfw limitconcon
|
||||
< fwdfw log
|
||||
< fwdfw log rule
|
||||
< fwdfw man port
|
||||
< fwdfw many
|
||||
< fwdfw maxconcon
|
||||
< fwdfw menu
|
||||
< fwdfw MODE1
|
||||
< fwdfw MODE2
|
||||
@@ -717,6 +752,7 @@
|
||||
< fwdfw moveup
|
||||
< fwdfw natport used
|
||||
< fwdfw newrule
|
||||
< fwdfw numcon
|
||||
< fwdfw p2p txt
|
||||
< fwdfw pol allow
|
||||
< fwdfw pol block
|
||||
@@ -725,6 +761,7 @@
|
||||
< fwdfw pol title
|
||||
< fwdfw prot41
|
||||
< fwdfw prot41 short
|
||||
< fwdfw ratelimit
|
||||
< fwdfw red
|
||||
< fwdfw REJECT
|
||||
< fwdfw reread
|
||||
@@ -865,9 +902,16 @@
|
||||
< least preferred
|
||||
< lifetime
|
||||
< mac filter
|
||||
< masquerade blue
|
||||
< masquerade green
|
||||
< masquerade orange
|
||||
< masquerading
|
||||
< masquerading disabled
|
||||
< masquerading enabled
|
||||
< maximum
|
||||
< MB read
|
||||
< MB written
|
||||
< messages
|
||||
< minimum
|
||||
< minute
|
||||
< model
|
||||
@@ -954,6 +998,8 @@
|
||||
< qos enter bandwidths
|
||||
< random number generator daemon
|
||||
< red1
|
||||
< samba join a domain
|
||||
< samba join domain
|
||||
< server restart
|
||||
< Set time on boot
|
||||
< show dh
|
||||
@@ -1069,10 +1115,18 @@
|
||||
# Checking cgi-bin translations for language: pl #
|
||||
############################################################################
|
||||
< addon
|
||||
< administrator password
|
||||
< administrator username
|
||||
< adsl settings
|
||||
< advproxy AUTH method ntlm
|
||||
< advproxy AUTH method ntlm auth
|
||||
< advproxy basic authentication
|
||||
< advproxy cache-digest
|
||||
< advproxy errmsg cache
|
||||
< advproxy errmsg invalid upstream proxy
|
||||
< advproxy errmsg proxy ports equal
|
||||
< advproxy group access control
|
||||
< advproxy group required
|
||||
< advproxy proxy port transparent
|
||||
< age second
|
||||
< age seconds
|
||||
@@ -1197,12 +1251,14 @@
|
||||
< fwdfw dnat porterr2
|
||||
< fwdfw DROP
|
||||
< fwdfw edit
|
||||
< fwdfw err concon
|
||||
< fwdfw err nosrc
|
||||
< fwdfw err nosrcip
|
||||
< fwdfw err notgt
|
||||
< fwdfw err notgtip
|
||||
< fwdfw err prot_port
|
||||
< fwdfw err prot_port1
|
||||
< fwdfw err ratecon
|
||||
< fwdfw err remark
|
||||
< fwdfw err ruleexists
|
||||
< fwdfw err same
|
||||
@@ -1221,10 +1277,12 @@
|
||||
< fwdfw hint mac
|
||||
< fwdfw iface
|
||||
< fwdfw ipsec network
|
||||
< fwdfw limitconcon
|
||||
< fwdfw log
|
||||
< fwdfw log rule
|
||||
< fwdfw man port
|
||||
< fwdfw many
|
||||
< fwdfw maxconcon
|
||||
< fwdfw menu
|
||||
< fwdfw MODE1
|
||||
< fwdfw MODE2
|
||||
@@ -1232,6 +1290,7 @@
|
||||
< fwdfw moveup
|
||||
< fwdfw natport used
|
||||
< fwdfw newrule
|
||||
< fwdfw numcon
|
||||
< fwdfw p2p txt
|
||||
< fwdfw pol allow
|
||||
< fwdfw pol block
|
||||
@@ -1240,6 +1299,7 @@
|
||||
< fwdfw pol title
|
||||
< fwdfw prot41
|
||||
< fwdfw prot41 short
|
||||
< fwdfw ratelimit
|
||||
< fwdfw red
|
||||
< fwdfw REJECT
|
||||
< fwdfw reread
|
||||
@@ -1380,9 +1440,16 @@
|
||||
< least preferred
|
||||
< lifetime
|
||||
< mac filter
|
||||
< masquerade blue
|
||||
< masquerade green
|
||||
< masquerade orange
|
||||
< masquerading
|
||||
< masquerading disabled
|
||||
< masquerading enabled
|
||||
< maximum
|
||||
< MB read
|
||||
< MB written
|
||||
< messages
|
||||
< minimum
|
||||
< minute
|
||||
< model
|
||||
@@ -1455,6 +1522,8 @@
|
||||
< qos enter bandwidths
|
||||
< random number generator daemon
|
||||
< red1
|
||||
< samba join a domain
|
||||
< samba join domain
|
||||
< server restart
|
||||
< show dh
|
||||
< snat new source ip address
|
||||
@@ -1569,10 +1638,18 @@
|
||||
############################################################################
|
||||
< Add a route
|
||||
< addon
|
||||
< administrator password
|
||||
< administrator username
|
||||
< adsl settings
|
||||
< advproxy AUTH method ntlm
|
||||
< advproxy AUTH method ntlm auth
|
||||
< advproxy basic authentication
|
||||
< advproxy cache-digest
|
||||
< advproxy errmsg cache
|
||||
< advproxy errmsg invalid upstream proxy
|
||||
< advproxy errmsg proxy ports equal
|
||||
< advproxy group access control
|
||||
< advproxy group required
|
||||
< advproxy proxy port transparent
|
||||
< age second
|
||||
< age seconds
|
||||
@@ -1701,12 +1778,14 @@
|
||||
< fwdfw dnat porterr2
|
||||
< fwdfw DROP
|
||||
< fwdfw edit
|
||||
< fwdfw err concon
|
||||
< fwdfw err nosrc
|
||||
< fwdfw err nosrcip
|
||||
< fwdfw err notgt
|
||||
< fwdfw err notgtip
|
||||
< fwdfw err prot_port
|
||||
< fwdfw err prot_port1
|
||||
< fwdfw err ratecon
|
||||
< fwdfw err remark
|
||||
< fwdfw err ruleexists
|
||||
< fwdfw err same
|
||||
@@ -1725,10 +1804,12 @@
|
||||
< fwdfw hint mac
|
||||
< fwdfw iface
|
||||
< fwdfw ipsec network
|
||||
< fwdfw limitconcon
|
||||
< fwdfw log
|
||||
< fwdfw log rule
|
||||
< fwdfw man port
|
||||
< fwdfw many
|
||||
< fwdfw maxconcon
|
||||
< fwdfw menu
|
||||
< fwdfw MODE1
|
||||
< fwdfw MODE2
|
||||
@@ -1736,6 +1817,7 @@
|
||||
< fwdfw moveup
|
||||
< fwdfw natport used
|
||||
< fwdfw newrule
|
||||
< fwdfw numcon
|
||||
< fwdfw p2p txt
|
||||
< fwdfw pol allow
|
||||
< fwdfw pol block
|
||||
@@ -1744,6 +1826,7 @@
|
||||
< fwdfw pol title
|
||||
< fwdfw prot41
|
||||
< fwdfw prot41 short
|
||||
< fwdfw ratelimit
|
||||
< fwdfw red
|
||||
< fwdfw REJECT
|
||||
< fwdfw reread
|
||||
@@ -1886,9 +1969,16 @@
|
||||
< least preferred
|
||||
< lifetime
|
||||
< mac filter
|
||||
< masquerade blue
|
||||
< masquerade green
|
||||
< masquerade orange
|
||||
< masquerading
|
||||
< masquerading disabled
|
||||
< masquerading enabled
|
||||
< maximum
|
||||
< MB read
|
||||
< MB written
|
||||
< messages
|
||||
< minimum
|
||||
< minute
|
||||
< model
|
||||
@@ -1959,6 +2049,8 @@
|
||||
< qos enter bandwidths
|
||||
< random number generator daemon
|
||||
< red1
|
||||
< samba join a domain
|
||||
< samba join domain
|
||||
< server restart
|
||||
< show dh
|
||||
< snat new source ip address
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user