mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-05-10 17:28:26 +02:00
Merge branch 'master' of ssh://git.ipfire.org/pub/git/ipfire-2.x into install-raid
This commit is contained in:
@@ -286,7 +286,7 @@ sub validip
|
|||||||
sub validmask {
|
sub validmask {
|
||||||
my $mask = shift;
|
my $mask = shift;
|
||||||
|
|
||||||
return &Network::check_netmask($mask) or &Network::check_prefix($mask);
|
return &Network::check_netmask($mask) || &Network::check_prefix($mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub validipormask
|
sub validipormask
|
||||||
@@ -388,7 +388,9 @@ sub iporsubtocidr
|
|||||||
}
|
}
|
||||||
|
|
||||||
sub getnetworkip {
|
sub getnetworkip {
|
||||||
return &Network::get_netaddress(shift);
|
my $arg = join("/", @_);
|
||||||
|
|
||||||
|
return &Network::get_netaddress($arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub getccdbc
|
sub getccdbc
|
||||||
|
|||||||
1
config/rootfiles/core/82/filelists/openssl-compat
Symbolic link
1
config/rootfiles/core/82/filelists/openssl-compat
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../../../common/openssl-compat
|
||||||
@@ -129,9 +129,9 @@ 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/UniWrap.pm
|
||||||
usr/lib/perl5/site_perl/5.12.3/PDF/API2/Util.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/PDF/API2/Win32.pm
|
||||||
#usr/lib/perl5/site_perl/5.12.3/i586-linux-thread-multi/auto/PDF
|
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/PDF
|
||||||
#usr/lib/perl5/site_perl/5.12.3/i586-linux-thread-multi/auto/PDF/API2
|
#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/PDF/API2
|
||||||
#usr/lib/perl5/site_perl/5.12.3/i586-linux-thread-multi/auto/PDF/API2/.packlist
|
#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.3
|
||||||
#usr/share/man/man3/PDF::API2::Annotation.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::Array.3
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ other usefull commands from the Dom0:
|
|||||||
- reset the fire: "xm destroy ipfire-xen"
|
- reset the fire: "xm destroy ipfire-xen"
|
||||||
- look what is going on: "xm top" or "xm list"
|
- 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.
|
- 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"
|
- import the vm with "xe vm-import file=ipfire.xfa"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
# #
|
# #
|
||||||
# IPFire.org - A linux based firewall #
|
# IPFire.org - A linux based firewall #
|
||||||
# Copyright (C) 2007-2013 IPFire Team <info@ipfire.org> #
|
# Copyright (C) 2007-2014 IPFire Team <info@ipfire.org> #
|
||||||
# #
|
# #
|
||||||
# This program is free software: you can redistribute it and/or modify #
|
# This program is free software: you can redistribute it and/or modify #
|
||||||
# it under the terms of the GNU General Public License as published by #
|
# it under the terms of the GNU General Public License as published by #
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
include Config
|
include Config
|
||||||
|
|
||||||
VER = 0.9.8y
|
VER = 0.9.8zb
|
||||||
|
|
||||||
THISAPP = openssl-$(VER)
|
THISAPP = openssl-$(VER)
|
||||||
DL_FILE = $(THISAPP).tar.gz
|
DL_FILE = $(THISAPP).tar.gz
|
||||||
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
|
|||||||
|
|
||||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||||
|
|
||||||
$(DL_FILE)_MD5 = 47c7fb37f78c970f1d30aa2f9e9e26d8
|
$(DL_FILE)_MD5 = 65c5f42734f8ecd58990b12a9afa6453
|
||||||
|
|
||||||
install : $(TARGET)
|
install : $(TARGET)
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
include Config
|
include Config
|
||||||
|
|
||||||
VER = 3.1.0
|
VER = 3.1.1
|
||||||
|
|
||||||
THISAPP = rsync-$(VER)
|
THISAPP = rsync-$(VER)
|
||||||
DL_FILE = $(THISAPP).tar.gz
|
DL_FILE = $(THISAPP).tar.gz
|
||||||
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
|
|||||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||||
PROG = rsync
|
PROG = rsync
|
||||||
PAK_VER = 8
|
PAK_VER = 9
|
||||||
|
|
||||||
DEPS = ""
|
DEPS = ""
|
||||||
|
|
||||||
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
|
|||||||
|
|
||||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||||
|
|
||||||
$(DL_FILE)_MD5 = 3be148772a33224771a8d4d2a028b132
|
$(DL_FILE)_MD5 = 43bd6676f0b404326eee2d63be3cdcfe
|
||||||
|
|
||||||
install : $(TARGET)
|
install : $(TARGET)
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
|
|||||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||||
PROG = samba
|
PROG = samba
|
||||||
PAK_VER = 58
|
PAK_VER = 59
|
||||||
|
|
||||||
DEPS = "cups krb5"
|
DEPS = "cups krb5"
|
||||||
|
|
||||||
|
|||||||
4
lfs/sane
4
lfs/sane
@@ -33,9 +33,9 @@ DIR_APP = $(DIR_SRC)/sane-backends-$(VER)
|
|||||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||||
|
|
||||||
PROG = sane
|
PROG = sane
|
||||||
PAK_VER = 3
|
PAK_VER = 4
|
||||||
|
|
||||||
DEPS = "libtiff"
|
DEPS = "cups libtiff"
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Top-level Rules
|
# Top-level Rules
|
||||||
|
|||||||
@@ -460,7 +460,6 @@ sub pdf2 {
|
|||||||
$lines->linewidth('0.5');
|
$lines->linewidth('0.5');
|
||||||
|
|
||||||
#Fill BILL DATA into PDF
|
#Fill BILL DATA into PDF
|
||||||
setlocale(LC_ALL, "$mainsettings{'LANGUAGE'}_$uplang");
|
|
||||||
foreach (@billar) {
|
foreach (@billar) {
|
||||||
my ($a1,$a2) = split( /\,/, $_ );
|
my ($a1,$a2) = split( /\,/, $_ );
|
||||||
$a2=sprintf"%.2f",($a2/1024/1024);
|
$a2=sprintf"%.2f",($a2/1024/1024);
|
||||||
|
|||||||
Reference in New Issue
Block a user