mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-14 13:02:58 +02:00
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next-suricata
Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
This commit is contained in:
4
.mailmap
4
.mailmap
@@ -13,8 +13,11 @@ Christian Schmidt <maniacikarus.ipfire.org>
|
||||
Christian Schmidt <maniacikarus@ipfire.org>
|
||||
Christian Schmidt <root@daedalus.homeip.net>
|
||||
Christian Schmidt <root@ikarus.homeip.net>
|
||||
Daniel Weismüller <whytea@ipfire.org>
|
||||
Dirk Wagner <root@etch-server.wagner-budenheim.de>
|
||||
Heiner Schmeling <casemaster@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
|
||||
Jan Paul Tücking <earl@ipfire.org>
|
||||
Jörn-Ingo Weigert <jiweigert@ipfire.org>
|
||||
Michael Tremer <delaco@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
|
||||
Michael Tremer <ipfire@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
|
||||
Michael Tremer <michael.tremer.info>
|
||||
@@ -28,3 +31,4 @@ Michael Tremer <root@rowena.ipfire.org>
|
||||
Peter Pfeiffer <root@VMipfire.pfeiffer-privat.de>
|
||||
Rene Zingel <linuxadmin@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
|
||||
Ronald Wiesinger <rowie@ipfire.org>
|
||||
Stéphane Pautrel <steph78630@gmail.com>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/usr/bin/perl
|
||||
#!/bin/bash
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
@@ -19,148 +19,203 @@
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
require '/var/ipfire/general-functions.pl';
|
||||
require "${General::swroot}/lang.pl";
|
||||
require "${General::swroot}/header.pl";
|
||||
use File::Path;
|
||||
my $debug = 1;
|
||||
my @include = "";
|
||||
my ($Sekunden, $Minuten, $Stunden, $Monatstag, $Monat, $Jahr, $Wochentag, $Jahrestag, $Sommerzeit) = localtime(time);
|
||||
$Jahr = $Jahr + 1900;$Monat = $Monat + 1;
|
||||
$Monat = sprintf("%02d", $Monat);
|
||||
$Monatstag = sprintf("%02d", $Monatstag);
|
||||
$Stunden = sprintf("%02d", $Stunden);
|
||||
$Minuten = sprintf("%02d", $Minuten);
|
||||
NOW="$(date "+%Y-%m-%d-%H:%M")"
|
||||
|
||||
if (($ARGV[0] eq 'include') || ($ARGV[0] eq 'iso')) {
|
||||
&createinclude;
|
||||
my @files = `find / -name *.log* 2>/dev/null`;
|
||||
foreach (@files){
|
||||
push(@include,$_);
|
||||
}
|
||||
my @files = `find /var/log/ -name *messages* 2>/dev/null`;
|
||||
foreach (@files){
|
||||
push(@include,$_);
|
||||
}
|
||||
open(DATEI, ">/tmp/include") || die "Could not save temp include file";
|
||||
print DATEI @include;
|
||||
print "/var/log/messages";
|
||||
close(DATEI);
|
||||
system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten.ipf --exclude-from='/var/ipfire/backup/exclude' --exclude-from='/var/ipfire/backup/exclude.user' --files-from='/tmp/include' --files-from='/var/ipfire/backup/include.user'");
|
||||
system("rm /tmp/include");
|
||||
if ($ARGV[0] eq 'iso') {
|
||||
system("/usr/local/bin/backupiso $Jahr$Monat$Monatstag-$Stunden$Minuten &");
|
||||
}
|
||||
}
|
||||
elsif ($ARGV[0] eq 'exclude') {
|
||||
&createinclude;
|
||||
open(DATEI, ">/tmp/include") || die "Could not save temp include file";
|
||||
print DATEI @include;
|
||||
close(DATEI);
|
||||
system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten.ipf --exclude-from='/var/ipfire/backup/exclude' --exclude-from='/var/ipfire/backup/exclude.user' --files-from='/tmp/include' --files-from='/var/ipfire/backup/include.user'");
|
||||
system("rm /tmp/include");
|
||||
}
|
||||
elsif ($ARGV[0] eq 'restore') {
|
||||
system("cd / && tar -xvz -p -f /tmp/restore.ipf");
|
||||
#Here some converter scripts to correct old Backups (before core 65)
|
||||
system("/usr/sbin/ovpn-ccd-convert");
|
||||
#OUTGOINGFW CONVERTER
|
||||
if( -d "${General::swroot}/outgoing"){
|
||||
if( -f "${General::swroot}/firewall/config" ){
|
||||
unlink("${General::swroot}/firewall/config");
|
||||
system("touch ${General::swroot}/firewall/config");
|
||||
chown 99,99,"${General::swroot}/firewall/config";
|
||||
}
|
||||
if( -f "${General::swroot}/firewall/outgoing" ){
|
||||
unlink("${General::swroot}/firewall/outgoing");
|
||||
system("touch ${General::swroot}/firewall/outgoing");
|
||||
chown 99,99,"${General::swroot}/firewall/outgoing";
|
||||
}
|
||||
unlink("${General::swroot}/fwhosts/customgroups");
|
||||
unlink("${General::swroot}/fwhosts/customhosts");
|
||||
unlink("${General::swroot}/fwhosts/customgroups");
|
||||
unlink("${General::swroot}/fwhosts/customnetworks");
|
||||
unlink("${General::swroot}/fwhosts/customservicegrp");
|
||||
unlink("${General::swroot}/fwhosts/customnetworks");
|
||||
system("touch ${General::swroot}/fwhosts/customgroups");
|
||||
system("touch ${General::swroot}/fwhosts/customhosts");
|
||||
system("touch ${General::swroot}/fwhosts/customnetworks");
|
||||
system("touch ${General::swroot}/fwhosts/customservicegrp");
|
||||
#START CONVERTER "OUTGOINGFW"
|
||||
system("/usr/sbin/convert-outgoingfw");
|
||||
chown 99,99,"${General::swroot}/fwhosts/customgroups";
|
||||
chown 99,99,"${General::swroot}/fwhosts/customhosts";
|
||||
chown 99,99,"${General::swroot}/fwhosts/customnetworks";
|
||||
chown 99,99,"${General::swroot}/fwhosts/customservicegrp";
|
||||
#START CONVERTER "OUTGOINGFW"
|
||||
rmtree("${General::swroot}/outgoing");
|
||||
}
|
||||
#XTACCESS CONVERTER
|
||||
if( -d "${General::swroot}/xtaccess"){
|
||||
if( -f "${General::swroot}/firewall/input" ){
|
||||
unlink("${General::swroot}/firewall/input");
|
||||
system("touch ${General::swroot}/firewall/input");
|
||||
}
|
||||
#START CONVERTER "XTACCESS"
|
||||
system("/usr/sbin/convert-xtaccess");
|
||||
chown 99,99,"${General::swroot}/firewall/input";
|
||||
rmtree("${General::swroot}/xtaccess");
|
||||
}
|
||||
#DMZ-HOLES CONVERTER
|
||||
if( -d "${General::swroot}/dmzholes" || -d "${General::swroot}/portfw"){
|
||||
if( -f "${General::swroot}/firewall/config" ){
|
||||
unlink("${General::swroot}/firewall/config");
|
||||
system("touch ${General::swroot}/firewall/config");
|
||||
}
|
||||
#START CONVERTER "DMZ-HOLES"
|
||||
system("/usr/sbin/convert-dmz");
|
||||
chown 99,99,"${General::swroot}/firewall/config";
|
||||
rmtree("${General::swroot}/dmzholes");
|
||||
}
|
||||
#PORTFORWARD CONVERTER
|
||||
if( -d "${General::swroot}/portfw"){
|
||||
#START CONVERTER "PORTFW"
|
||||
system("/usr/sbin/convert-portfw");
|
||||
rmtree("${General::swroot}/portfw");
|
||||
}
|
||||
system("/usr/local/bin/firewallctrl");
|
||||
list_addons() {
|
||||
local file
|
||||
for file in /var/ipfire/backup/addons/includes/*; do
|
||||
if [ -f "${file}" ]; then
|
||||
basename "${file}"
|
||||
fi
|
||||
done
|
||||
|
||||
# Convert old OpenVPN CCD files (CN change, core 75).
|
||||
system("/usr/local/bin/convert-ovpn");
|
||||
}
|
||||
elsif ($ARGV[0] eq 'restoreaddon') {
|
||||
if ( -e "/tmp/$ARGV[1]" ){system("mv /tmp/$ARGV[1] /var/ipfire/backup/addons/backup/$ARGV[1]");}
|
||||
system("cd / && tar -xvz -p -f /var/ipfire/backup/addons/backup/$ARGV[1]");
|
||||
}
|
||||
elsif ($ARGV[0] eq 'cli') {
|
||||
system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten-$ARGV[1].ipf --files-from='$ARGV[2]' --exclude-from='$ARGV[3]'");
|
||||
}
|
||||
elsif ($ARGV[0] eq 'addonbackup') {
|
||||
system("tar -cvzf /var/ipfire/backup/addons/backup/$ARGV[1].ipf --files-from='/var/ipfire/backup/addons/includes/$ARGV[1]'");
|
||||
}
|
||||
elsif ($ARGV[0] =~ /\.(iso|ipf)$/ ) {
|
||||
unlink("$ARGV[0]");
|
||||
}
|
||||
elsif ($ARGV[0] eq '') {
|
||||
printf "No argument given, please use <include><exclude><cli>\n"
|
||||
}
|
||||
elsif ($ARGV[0] eq 'makedirs') {
|
||||
system("mkdir -p /var/ipfire/backup/addons");
|
||||
system("mkdir -p /var/ipfire/backup/addons/backup");
|
||||
system("mkdir -p /var/ipfire/backup/addons/includes");
|
||||
return 0
|
||||
}
|
||||
|
||||
sub createinclude(){
|
||||
process_includes() {
|
||||
local include
|
||||
|
||||
open(DATEI, "<${General::swroot}/backup/include") || die "Can not open include file";
|
||||
my @Zeilen = <DATEI>;
|
||||
close(DATEI);
|
||||
|
||||
foreach (@Zeilen){
|
||||
chomp($_);
|
||||
my @files = `find $_ -maxdepth 0 2>/dev/null`;
|
||||
foreach (@files){
|
||||
push(@include,$_);
|
||||
}
|
||||
}
|
||||
for include in $@; do
|
||||
local file
|
||||
while read -r file; do
|
||||
for file in ${file}; do
|
||||
if [ -e "${file}" ]; then
|
||||
echo "${file}"
|
||||
fi
|
||||
done
|
||||
done < "${include}"
|
||||
done | sort -u
|
||||
}
|
||||
|
||||
make_backup() {
|
||||
local filename="${1}"
|
||||
shift
|
||||
|
||||
# Backup all addons first
|
||||
local addon
|
||||
for addon in $(list_addons); do
|
||||
make_addon_backup "${addon}"
|
||||
done
|
||||
|
||||
tar cvzf "${filename}" \
|
||||
--exclude-from="/var/ipfire/backup/exclude" \
|
||||
--exclude-from="/var/ipfire/backup/exclude.user" \
|
||||
$(process_includes "/var/ipfire/backup/include" "/var/ipfire/backup/include.user") \
|
||||
"$@"
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
restore_backup() {
|
||||
local filename="${1}"
|
||||
|
||||
tar xvzpf "${filename}" -C /
|
||||
|
||||
# Run converters
|
||||
|
||||
# Outgoing Firewall
|
||||
if [ -d "/var/ipfire/outgoing" ]; then
|
||||
# Reset files
|
||||
local file
|
||||
for file in /var/ipfire/firewall/{config,outgoing} \
|
||||
/var/ipfire/fwhosts/custom{hosts,groups,networks}; do
|
||||
: > "${file}"
|
||||
chown nobody:nobody "${file}"
|
||||
done
|
||||
|
||||
# Run converter
|
||||
convert-outgoingfw
|
||||
|
||||
# Remove old configuration
|
||||
rm -rf "/var/ipfire/outgoing"
|
||||
fi
|
||||
|
||||
# External Access
|
||||
if [ -d "/var/ipfire/xtaccess" ]; then
|
||||
: > /var/ipfire/firewall/config
|
||||
chown nobody:nobody "/var/ipfire/firewall/config"
|
||||
|
||||
# Run converter
|
||||
convert-xtaccess
|
||||
|
||||
# Remove old configuration
|
||||
rm -rf "/var/ipfire/xtaccess"
|
||||
fi
|
||||
|
||||
# DMZ Holes
|
||||
if [ -d "/var/ipfire/dmzholes" ] || [ -d "/var/ipfire/portfw" ]; then
|
||||
: > /var/ipfire/firewall/config
|
||||
chown nobody:nobody "/var/ipfire/firewall/config"
|
||||
|
||||
# Run converter
|
||||
convert-dmz
|
||||
|
||||
# Remove old configuration
|
||||
rm -rf "/var/ipfire/dmzholes"
|
||||
fi
|
||||
|
||||
# Port Forwardings
|
||||
if [ -d "/var/ipfire/portfw" ]; then
|
||||
# Run converter
|
||||
convert-portfw
|
||||
|
||||
# Remove old configuration
|
||||
rm -rf "/var/ipfire/portfw"
|
||||
fi
|
||||
|
||||
# Reload firewall
|
||||
firewallctrl
|
||||
|
||||
# Convert old OpenVPN CCD files (CN change, Core Update 75)
|
||||
convert-ovpn
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
find_logfiles() {
|
||||
local filelist=( /var/log/messages* /var/log/*.log /var/log/**/*.log )
|
||||
|
||||
echo "${filelist[@]}"
|
||||
}
|
||||
|
||||
make_addon_backup() {
|
||||
local name="${1}"
|
||||
shift
|
||||
|
||||
if [ ! -f "/var/ipfire/backup/addons/includes/${name}" ]; then
|
||||
echo "${name} does not have any backup includes" >&2
|
||||
return 1
|
||||
fi
|
||||
|
||||
local filename="/var/ipfire/backup/addons/backup/${name}.ipf"
|
||||
|
||||
tar cvzf "${filename}" \
|
||||
$(process_includes "/var/ipfire/backup/addons/includes/${name}")
|
||||
}
|
||||
|
||||
restore_addon_backup() {
|
||||
local name="${1}"
|
||||
|
||||
if [ -d "/tmp/${name}.ipf" ]; then
|
||||
mv "/tmp/${name}.ipf" "/var/ipfire/backup/addons/backup/${name}.ipf"
|
||||
fi
|
||||
|
||||
tar xvzpf "/var/ipfire/backup/addons/backup/${name}.ipf" -C /
|
||||
}
|
||||
|
||||
main() {
|
||||
local command="${1}"
|
||||
shift
|
||||
|
||||
# Desired backup filename
|
||||
local filename="/var/ipfire/backup/${NOW}.ipf"
|
||||
|
||||
case "${command}" in
|
||||
include)
|
||||
make_backup "${filename}" $(find_logfiles)
|
||||
;;
|
||||
|
||||
exclude)
|
||||
make_backup "${filename}"
|
||||
;;
|
||||
|
||||
restore)
|
||||
restore_backup "/tmp/restore.ipf"
|
||||
;;
|
||||
|
||||
addonbackup)
|
||||
make_addon_backup "$@"
|
||||
;;
|
||||
|
||||
restoreaddon)
|
||||
restore_addon_backup "${1/.ipf/}"
|
||||
;;
|
||||
|
||||
iso)
|
||||
if make_backup "${filename}"; then
|
||||
/usr/local/bin/backupiso "${NOW}" &
|
||||
fi
|
||||
;;
|
||||
|
||||
makedirs)
|
||||
mkdir -p /var/ipfire/backup/addons/{backup,includes}
|
||||
;;
|
||||
|
||||
list)
|
||||
process_includes "/var/ipfire/backup/include" "/var/ipfire/backup/include.user"
|
||||
;;
|
||||
|
||||
/var/ipfire/backup/*.ipf|/var/ipfire/backup/addons/backup/*.ipf|/var/tmp/backupiso/*.iso)
|
||||
unlink "${command}"
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "${0}: [include|exclude|restore|addonbackup <addon>|restoreaddon <addon>|iso]" >&2
|
||||
return 2
|
||||
;;
|
||||
esac
|
||||
|
||||
return $?
|
||||
}
|
||||
|
||||
main "$@" || exit $?
|
||||
|
||||
@@ -23,6 +23,9 @@
|
||||
/root/.gitconfig
|
||||
/root/.ssh
|
||||
/var/ipfire/auth/users
|
||||
/var/ipfire/backup/addons/backup
|
||||
/var/ipfire/backup/exclude.user
|
||||
/var/ipfire/backup/include.user
|
||||
/var/ipfire/captive/*
|
||||
/var/ipfire/*/*.conf
|
||||
/var/ipfire/*/config
|
||||
|
||||
1
config/backup/includes/bird
Normal file
1
config/backup/includes/bird
Normal file
@@ -0,0 +1 @@
|
||||
etc/bird.conf
|
||||
1
config/backup/includes/dehydrated
Normal file
1
config/backup/includes/dehydrated
Normal file
@@ -0,0 +1 @@
|
||||
etc/dehydrated
|
||||
1
config/backup/includes/frr
Normal file
1
config/backup/includes/frr
Normal file
@@ -0,0 +1 @@
|
||||
/etc/frr
|
||||
2
config/backup/includes/nfs
Normal file
2
config/backup/includes/nfs
Normal file
@@ -0,0 +1,2 @@
|
||||
etc/exports
|
||||
var/ipfire/nfs/nfs-server
|
||||
2
config/backup/includes/observium-agent
Normal file
2
config/backup/includes/observium-agent
Normal file
@@ -0,0 +1,2 @@
|
||||
etc/xinetd.d/observium_agent_xinetd
|
||||
usr/lib/observium_agent/scripts-enabled
|
||||
1
config/backup/includes/shairport-sync
Normal file
1
config/backup/includes/shairport-sync
Normal file
@@ -0,0 +1 @@
|
||||
etc/shairport-sync.conf
|
||||
@@ -2144,146 +2144,6 @@ CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_TRUSTED_DELEGATOR
|
||||
CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST
|
||||
CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE
|
||||
|
||||
#
|
||||
# Certificate "Visa eCommerce Root"
|
||||
#
|
||||
# Issuer: CN=Visa eCommerce Root,OU=Visa International Service Association,O=VISA,C=US
|
||||
# Serial Number:13:86:35:4d:1d:3f:06:f2:c1:f9:65:05:d5:90:1c:62
|
||||
# Subject: CN=Visa eCommerce Root,OU=Visa International Service Association,O=VISA,C=US
|
||||
# Not Valid Before: Wed Jun 26 02:18:36 2002
|
||||
# Not Valid After : Fri Jun 24 00:16:12 2022
|
||||
# Fingerprint (MD5): FC:11:B8:D8:08:93:30:00:6D:23:F9:7E:EB:52:1E:02
|
||||
# Fingerprint (SHA1): 70:17:9B:86:8C:00:A4:FA:60:91:52:22:3F:9F:3E:32:BD:E0:05:62
|
||||
CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE
|
||||
CKA_TOKEN CK_BBOOL CK_TRUE
|
||||
CKA_PRIVATE CK_BBOOL CK_FALSE
|
||||
CKA_MODIFIABLE CK_BBOOL CK_FALSE
|
||||
CKA_LABEL UTF8 "Visa eCommerce Root"
|
||||
CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509
|
||||
CKA_SUBJECT MULTILINE_OCTAL
|
||||
\060\153\061\013\060\011\006\003\125\004\006\023\002\125\123\061
|
||||
\015\060\013\006\003\125\004\012\023\004\126\111\123\101\061\057
|
||||
\060\055\006\003\125\004\013\023\046\126\151\163\141\040\111\156
|
||||
\164\145\162\156\141\164\151\157\156\141\154\040\123\145\162\166
|
||||
\151\143\145\040\101\163\163\157\143\151\141\164\151\157\156\061
|
||||
\034\060\032\006\003\125\004\003\023\023\126\151\163\141\040\145
|
||||
\103\157\155\155\145\162\143\145\040\122\157\157\164
|
||||
END
|
||||
CKA_ID UTF8 "0"
|
||||
CKA_ISSUER MULTILINE_OCTAL
|
||||
\060\153\061\013\060\011\006\003\125\004\006\023\002\125\123\061
|
||||
\015\060\013\006\003\125\004\012\023\004\126\111\123\101\061\057
|
||||
\060\055\006\003\125\004\013\023\046\126\151\163\141\040\111\156
|
||||
\164\145\162\156\141\164\151\157\156\141\154\040\123\145\162\166
|
||||
\151\143\145\040\101\163\163\157\143\151\141\164\151\157\156\061
|
||||
\034\060\032\006\003\125\004\003\023\023\126\151\163\141\040\145
|
||||
\103\157\155\155\145\162\143\145\040\122\157\157\164
|
||||
END
|
||||
CKA_SERIAL_NUMBER MULTILINE_OCTAL
|
||||
\002\020\023\206\065\115\035\077\006\362\301\371\145\005\325\220
|
||||
\034\142
|
||||
END
|
||||
CKA_VALUE MULTILINE_OCTAL
|
||||
\060\202\003\242\060\202\002\212\240\003\002\001\002\002\020\023
|
||||
\206\065\115\035\077\006\362\301\371\145\005\325\220\034\142\060
|
||||
\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\153
|
||||
\061\013\060\011\006\003\125\004\006\023\002\125\123\061\015\060
|
||||
\013\006\003\125\004\012\023\004\126\111\123\101\061\057\060\055
|
||||
\006\003\125\004\013\023\046\126\151\163\141\040\111\156\164\145
|
||||
\162\156\141\164\151\157\156\141\154\040\123\145\162\166\151\143
|
||||
\145\040\101\163\163\157\143\151\141\164\151\157\156\061\034\060
|
||||
\032\006\003\125\004\003\023\023\126\151\163\141\040\145\103\157
|
||||
\155\155\145\162\143\145\040\122\157\157\164\060\036\027\015\060
|
||||
\062\060\066\062\066\060\062\061\070\063\066\132\027\015\062\062
|
||||
\060\066\062\064\060\060\061\066\061\062\132\060\153\061\013\060
|
||||
\011\006\003\125\004\006\023\002\125\123\061\015\060\013\006\003
|
||||
\125\004\012\023\004\126\111\123\101\061\057\060\055\006\003\125
|
||||
\004\013\023\046\126\151\163\141\040\111\156\164\145\162\156\141
|
||||
\164\151\157\156\141\154\040\123\145\162\166\151\143\145\040\101
|
||||
\163\163\157\143\151\141\164\151\157\156\061\034\060\032\006\003
|
||||
\125\004\003\023\023\126\151\163\141\040\145\103\157\155\155\145
|
||||
\162\143\145\040\122\157\157\164\060\202\001\042\060\015\006\011
|
||||
\052\206\110\206\367\015\001\001\001\005\000\003\202\001\017\000
|
||||
\060\202\001\012\002\202\001\001\000\257\127\336\126\036\156\241
|
||||
\332\140\261\224\047\313\027\333\007\077\200\205\117\310\234\266
|
||||
\320\364\157\117\317\231\330\341\333\302\110\134\072\254\071\063
|
||||
\307\037\152\213\046\075\053\065\365\110\261\221\301\002\116\004
|
||||
\226\221\173\260\063\360\261\024\116\021\157\265\100\257\033\105
|
||||
\245\112\357\176\266\254\362\240\037\130\077\022\106\140\074\215
|
||||
\241\340\175\317\127\076\063\036\373\107\361\252\025\227\007\125
|
||||
\146\245\265\055\056\330\200\131\262\247\015\267\106\354\041\143
|
||||
\377\065\253\245\002\317\052\364\114\376\173\365\224\135\204\115
|
||||
\250\362\140\217\333\016\045\074\237\163\161\317\224\337\112\352
|
||||
\333\337\162\070\214\363\226\275\361\027\274\322\272\073\105\132
|
||||
\306\247\366\306\027\213\001\235\374\031\250\052\203\026\270\072
|
||||
\110\376\116\076\240\253\006\031\351\123\363\200\023\007\355\055
|
||||
\277\077\012\074\125\040\071\054\054\000\151\164\225\112\274\040
|
||||
\262\251\171\345\030\211\221\250\334\034\115\357\273\176\067\013
|
||||
\135\376\071\245\210\122\214\000\154\354\030\174\101\275\366\213
|
||||
\165\167\272\140\235\204\347\376\055\002\003\001\000\001\243\102
|
||||
\060\100\060\017\006\003\125\035\023\001\001\377\004\005\060\003
|
||||
\001\001\377\060\016\006\003\125\035\017\001\001\377\004\004\003
|
||||
\002\001\006\060\035\006\003\125\035\016\004\026\004\024\025\070
|
||||
\203\017\077\054\077\160\063\036\315\106\376\007\214\040\340\327
|
||||
\303\267\060\015\006\011\052\206\110\206\367\015\001\001\005\005
|
||||
\000\003\202\001\001\000\137\361\101\175\174\134\010\271\053\340
|
||||
\325\222\107\372\147\134\245\023\303\003\041\233\053\114\211\106
|
||||
\317\131\115\311\376\245\100\266\143\315\335\161\050\225\147\021
|
||||
\314\044\254\323\104\154\161\256\001\040\153\003\242\217\030\267
|
||||
\051\072\175\345\026\140\123\170\074\300\257\025\203\367\217\122
|
||||
\063\044\275\144\223\227\356\213\367\333\030\250\155\161\263\367
|
||||
\054\027\320\164\045\151\367\376\153\074\224\276\115\113\101\214
|
||||
\116\342\163\320\343\220\042\163\103\315\363\357\352\163\316\105
|
||||
\212\260\246\111\377\114\175\235\161\210\304\166\035\220\133\035
|
||||
\356\375\314\367\356\375\140\245\261\172\026\161\321\026\320\174
|
||||
\022\074\154\151\227\333\256\137\071\232\160\057\005\074\031\106
|
||||
\004\231\040\066\320\140\156\141\006\273\026\102\214\160\367\060
|
||||
\373\340\333\146\243\000\001\275\346\054\332\221\137\240\106\213
|
||||
\115\152\234\075\075\335\005\106\376\166\277\240\012\074\344\000
|
||||
\346\047\267\377\204\055\336\272\042\047\226\020\161\353\042\355
|
||||
\337\337\063\234\317\343\255\256\216\324\216\346\117\121\257\026
|
||||
\222\340\134\366\007\017
|
||||
END
|
||||
CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE
|
||||
|
||||
# Trust for Certificate "Visa eCommerce Root"
|
||||
# Issuer: CN=Visa eCommerce Root,OU=Visa International Service Association,O=VISA,C=US
|
||||
# Serial Number:13:86:35:4d:1d:3f:06:f2:c1:f9:65:05:d5:90:1c:62
|
||||
# Subject: CN=Visa eCommerce Root,OU=Visa International Service Association,O=VISA,C=US
|
||||
# Not Valid Before: Wed Jun 26 02:18:36 2002
|
||||
# Not Valid After : Fri Jun 24 00:16:12 2022
|
||||
# Fingerprint (MD5): FC:11:B8:D8:08:93:30:00:6D:23:F9:7E:EB:52:1E:02
|
||||
# Fingerprint (SHA1): 70:17:9B:86:8C:00:A4:FA:60:91:52:22:3F:9F:3E:32:BD:E0:05:62
|
||||
CKA_CLASS CK_OBJECT_CLASS CKO_NSS_TRUST
|
||||
CKA_TOKEN CK_BBOOL CK_TRUE
|
||||
CKA_PRIVATE CK_BBOOL CK_FALSE
|
||||
CKA_MODIFIABLE CK_BBOOL CK_FALSE
|
||||
CKA_LABEL UTF8 "Visa eCommerce Root"
|
||||
CKA_CERT_SHA1_HASH MULTILINE_OCTAL
|
||||
\160\027\233\206\214\000\244\372\140\221\122\042\077\237\076\062
|
||||
\275\340\005\142
|
||||
END
|
||||
CKA_CERT_MD5_HASH MULTILINE_OCTAL
|
||||
\374\021\270\330\010\223\060\000\155\043\371\176\353\122\036\002
|
||||
END
|
||||
CKA_ISSUER MULTILINE_OCTAL
|
||||
\060\153\061\013\060\011\006\003\125\004\006\023\002\125\123\061
|
||||
\015\060\013\006\003\125\004\012\023\004\126\111\123\101\061\057
|
||||
\060\055\006\003\125\004\013\023\046\126\151\163\141\040\111\156
|
||||
\164\145\162\156\141\164\151\157\156\141\154\040\123\145\162\166
|
||||
\151\143\145\040\101\163\163\157\143\151\141\164\151\157\156\061
|
||||
\034\060\032\006\003\125\004\003\023\023\126\151\163\141\040\145
|
||||
\103\157\155\155\145\162\143\145\040\122\157\157\164
|
||||
END
|
||||
CKA_SERIAL_NUMBER MULTILINE_OCTAL
|
||||
\002\020\023\206\065\115\035\077\006\362\301\371\145\005\325\220
|
||||
\034\142
|
||||
END
|
||||
CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NSS_TRUSTED_DELEGATOR
|
||||
CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_TRUSTED_DELEGATOR
|
||||
CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST
|
||||
CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE
|
||||
|
||||
#
|
||||
# Certificate "Certum Root CA"
|
||||
#
|
||||
|
||||
3
config/dehydrated/cron.sh
Normal file
3
config/dehydrated/cron.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
exec /usr/bin/dehydrated --cron
|
||||
@@ -27,7 +27,7 @@ net.ipv4.conf.all.accept_source_route = 0
|
||||
net.ipv4.conf.all.log_martians = 1
|
||||
|
||||
kernel.printk = 1 4 1 7
|
||||
vm.swappiness=0
|
||||
vm.swappiness=1
|
||||
vm.mmap_min_addr = 4096
|
||||
vm.min_free_kbytes = 8192
|
||||
|
||||
|
||||
@@ -21,3 +21,6 @@ cron.none;daemon.*;local0.*;local2.*;*.info;mail.none;authpriv.* -/var/log/messa
|
||||
|
||||
# Postfix logs
|
||||
mail.* -/var/log/mail
|
||||
|
||||
# HAProxy
|
||||
local1.* -/var/log/haproxy
|
||||
|
||||
@@ -57,6 +57,18 @@ HAVE_OPENVPN="true"
|
||||
|
||||
# INPUT
|
||||
|
||||
# Drop syslog from anywhere but localhost
|
||||
# sysklogd cannot bind to specific interface and therefore we need to
|
||||
# block access by adding firewall rules
|
||||
case "${FWPOLICY}" in
|
||||
REJECT)
|
||||
iptables -A POLICYIN -p udp --dport 514 -j REJECT --reject-with icmp-host-unreachable
|
||||
;;
|
||||
*)
|
||||
iptables -A POLICYIN -p udp --dport 514 -j DROP
|
||||
;;
|
||||
esac
|
||||
|
||||
# Allow access from GREEN
|
||||
if [ -n "${GREEN_DEV}" ]; then
|
||||
iptables -A POLICYIN -i "${GREEN_DEV}" -j ACCEPT
|
||||
|
||||
8
config/haproxy/logrotate
Normal file
8
config/haproxy/logrotate
Normal file
@@ -0,0 +1,8 @@
|
||||
/var/log/haproxy {
|
||||
missingok
|
||||
notifempty
|
||||
sharedscripts
|
||||
postrotate
|
||||
/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true
|
||||
endscript
|
||||
}
|
||||
@@ -152,8 +152,7 @@ CONFIG_IEEE80211AC=y
|
||||
# Remove debugging code that is printing out debug messages to stdout.
|
||||
# This can be used to reduce the size of the hostapd considerably if debugging
|
||||
# code is not needed.
|
||||
CONFIG_NO_STDOUT_DEBUG=y
|
||||
|
||||
#CONFIG_NO_STDOUT_DEBUG=y
|
||||
|
||||
# Add support for writing debug log to a file: -f /tmp/hostapd.log
|
||||
# Disabled by default.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/arm64 4.14.71 Kernel Configuration
|
||||
# Linux/arm64 4.14.81-ipfire Kernel Configuration
|
||||
#
|
||||
CONFIG_ARM64=y
|
||||
CONFIG_64BIT=y
|
||||
@@ -307,7 +307,9 @@ CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
CONFIG_MODULE_SRCVERSION_ALL=y
|
||||
# CONFIG_MODULE_SIG is not set
|
||||
# CONFIG_MODULE_COMPRESS is not set
|
||||
CONFIG_MODULE_COMPRESS=y
|
||||
# CONFIG_MODULE_COMPRESS_GZIP is not set
|
||||
CONFIG_MODULE_COMPRESS_XZ=y
|
||||
# CONFIG_TRIM_UNUSED_KSYMS is not set
|
||||
CONFIG_MODULES_TREE_LOOKUP=y
|
||||
CONFIG_BLOCK=y
|
||||
@@ -1442,7 +1444,7 @@ CONFIG_FW_LOADER=y
|
||||
CONFIG_FIRMWARE_IN_KERNEL=y
|
||||
CONFIG_EXTRA_FIRMWARE=""
|
||||
CONFIG_FW_LOADER_USER_HELPER=y
|
||||
CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
|
||||
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
||||
CONFIG_WANT_DEV_COREDUMP=y
|
||||
CONFIG_ALLOW_DEV_COREDUMP=y
|
||||
CONFIG_DEV_COREDUMP=y
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/arm 4.14.71 Kernel Configuration
|
||||
# Linux/arm 4.14.81-ipfire-kirkwood Kernel Configuration
|
||||
#
|
||||
CONFIG_ARM=y
|
||||
CONFIG_ARM_HAS_SG_CHAIN=y
|
||||
@@ -286,7 +286,9 @@ CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
CONFIG_MODULE_SRCVERSION_ALL=y
|
||||
# CONFIG_MODULE_SIG is not set
|
||||
# CONFIG_MODULE_COMPRESS is not set
|
||||
CONFIG_MODULE_COMPRESS=y
|
||||
# CONFIG_MODULE_COMPRESS_GZIP is not set
|
||||
CONFIG_MODULE_COMPRESS_XZ=y
|
||||
# CONFIG_TRIM_UNUSED_KSYMS is not set
|
||||
CONFIG_MODULES_TREE_LOOKUP=y
|
||||
CONFIG_BLOCK=y
|
||||
@@ -1420,7 +1422,7 @@ CONFIG_FW_LOADER=y
|
||||
# CONFIG_FIRMWARE_IN_KERNEL is not set
|
||||
CONFIG_EXTRA_FIRMWARE=""
|
||||
CONFIG_FW_LOADER_USER_HELPER=y
|
||||
CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
|
||||
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
||||
CONFIG_WANT_DEV_COREDUMP=y
|
||||
CONFIG_ALLOW_DEV_COREDUMP=y
|
||||
CONFIG_DEV_COREDUMP=y
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/arm 4.14.71 Kernel Configuration
|
||||
# Linux/arm 4.14.81-ipfire-multi Kernel Configuration
|
||||
#
|
||||
CONFIG_ARM=y
|
||||
CONFIG_ARM_HAS_SG_CHAIN=y
|
||||
@@ -301,7 +301,9 @@ CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
CONFIG_MODULE_SRCVERSION_ALL=y
|
||||
# CONFIG_MODULE_SIG is not set
|
||||
# CONFIG_MODULE_COMPRESS is not set
|
||||
CONFIG_MODULE_COMPRESS=y
|
||||
# CONFIG_MODULE_COMPRESS_GZIP is not set
|
||||
CONFIG_MODULE_COMPRESS_XZ=y
|
||||
# CONFIG_TRIM_UNUSED_KSYMS is not set
|
||||
CONFIG_MODULES_TREE_LOOKUP=y
|
||||
CONFIG_BLOCK=y
|
||||
@@ -637,6 +639,8 @@ CONFIG_SWP_EMULATE=y
|
||||
# CONFIG_CPU_BIG_ENDIAN is not set
|
||||
# CONFIG_CPU_ICACHE_DISABLE is not set
|
||||
# CONFIG_CPU_BPREDICT_DISABLE is not set
|
||||
CONFIG_CPU_SPECTRE=y
|
||||
CONFIG_HARDEN_BRANCH_PREDICTOR=y
|
||||
CONFIG_KUSER_HELPERS=y
|
||||
CONFIG_VDSO=y
|
||||
CONFIG_DMA_CACHE_RWFO=y
|
||||
@@ -1696,7 +1700,7 @@ CONFIG_FW_LOADER=y
|
||||
CONFIG_FIRMWARE_IN_KERNEL=y
|
||||
CONFIG_EXTRA_FIRMWARE=""
|
||||
CONFIG_FW_LOADER_USER_HELPER=y
|
||||
CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
|
||||
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
||||
CONFIG_WANT_DEV_COREDUMP=y
|
||||
CONFIG_ALLOW_DEV_COREDUMP=y
|
||||
CONFIG_DEV_COREDUMP=y
|
||||
@@ -2621,8 +2625,8 @@ CONFIG_ICPLUS_PHY=m
|
||||
CONFIG_INTEL_XWAY_PHY=m
|
||||
CONFIG_LSI_ET1011C_PHY=m
|
||||
CONFIG_LXT_PHY=m
|
||||
CONFIG_MARVELL_PHY=m
|
||||
CONFIG_MARVELL_10G_PHY=m
|
||||
CONFIG_MARVELL_PHY=y
|
||||
CONFIG_MARVELL_10G_PHY=y
|
||||
CONFIG_MESON_GXL_PHY=m
|
||||
CONFIG_MICREL_PHY=m
|
||||
CONFIG_MICROCHIP_PHY=m
|
||||
@@ -5295,8 +5299,8 @@ CONFIG_USB_WUSB_CBAF=m
|
||||
# CONFIG_USB_C67X00_HCD is not set
|
||||
CONFIG_USB_XHCI_HCD=y
|
||||
CONFIG_USB_XHCI_PCI=y
|
||||
CONFIG_USB_XHCI_PLATFORM=m
|
||||
# CONFIG_USB_XHCI_MVEBU is not set
|
||||
CONFIG_USB_XHCI_PLATFORM=y
|
||||
CONFIG_USB_XHCI_MVEBU=y
|
||||
CONFIG_USB_EHCI_HCD=y
|
||||
CONFIG_USB_EHCI_ROOT_HUB_TT=y
|
||||
CONFIG_USB_EHCI_TT_NEWSCHED=y
|
||||
@@ -5632,8 +5636,8 @@ CONFIG_MMC_USHC=m
|
||||
CONFIG_MMC_SUNXI=y
|
||||
# CONFIG_MMC_TOSHIBA_PCI is not set
|
||||
CONFIG_MMC_BCM2835=y
|
||||
# CONFIG_MMC_MTK is not set
|
||||
# CONFIG_MMC_SDHCI_XENON is not set
|
||||
CONFIG_MMC_MTK=y
|
||||
CONFIG_MMC_SDHCI_XENON=y
|
||||
CONFIG_MEMSTICK=m
|
||||
# CONFIG_MEMSTICK_DEBUG is not set
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 4.14.71 Kernel Configuration
|
||||
# Linux/x86 4.14.81-ipfire-pae Kernel Configuration
|
||||
#
|
||||
# CONFIG_64BIT is not set
|
||||
CONFIG_X86_32=y
|
||||
@@ -335,7 +335,9 @@ CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
CONFIG_MODULE_SRCVERSION_ALL=y
|
||||
# CONFIG_MODULE_SIG is not set
|
||||
# CONFIG_MODULE_COMPRESS is not set
|
||||
CONFIG_MODULE_COMPRESS=y
|
||||
# CONFIG_MODULE_COMPRESS_GZIP is not set
|
||||
CONFIG_MODULE_COMPRESS_XZ=y
|
||||
# CONFIG_TRIM_UNUSED_KSYMS is not set
|
||||
CONFIG_MODULES_TREE_LOOKUP=y
|
||||
CONFIG_BLOCK=y
|
||||
@@ -1638,7 +1640,7 @@ CONFIG_FW_LOADER=y
|
||||
# CONFIG_FIRMWARE_IN_KERNEL is not set
|
||||
CONFIG_EXTRA_FIRMWARE=""
|
||||
CONFIG_FW_LOADER_USER_HELPER=y
|
||||
CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
|
||||
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
||||
CONFIG_WANT_DEV_COREDUMP=y
|
||||
CONFIG_ALLOW_DEV_COREDUMP=y
|
||||
CONFIG_DEV_COREDUMP=y
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 4.14.71 Kernel Configuration
|
||||
# Linux/x86 4.14.81-ipfire-pae Kernel Configuration
|
||||
#
|
||||
# CONFIG_64BIT is not set
|
||||
CONFIG_X86_32=y
|
||||
@@ -336,7 +336,9 @@ CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
CONFIG_MODULE_SRCVERSION_ALL=y
|
||||
# CONFIG_MODULE_SIG is not set
|
||||
# CONFIG_MODULE_COMPRESS is not set
|
||||
CONFIG_MODULE_COMPRESS=y
|
||||
# CONFIG_MODULE_COMPRESS_GZIP is not set
|
||||
CONFIG_MODULE_COMPRESS_XZ=y
|
||||
# CONFIG_TRIM_UNUSED_KSYMS is not set
|
||||
CONFIG_MODULES_TREE_LOOKUP=y
|
||||
CONFIG_BLOCK=y
|
||||
@@ -1656,7 +1658,7 @@ CONFIG_FW_LOADER=y
|
||||
# CONFIG_FIRMWARE_IN_KERNEL is not set
|
||||
CONFIG_EXTRA_FIRMWARE=""
|
||||
CONFIG_FW_LOADER_USER_HELPER=y
|
||||
CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
|
||||
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
||||
CONFIG_WANT_DEV_COREDUMP=y
|
||||
CONFIG_ALLOW_DEV_COREDUMP=y
|
||||
CONFIG_DEV_COREDUMP=y
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 4.14.71 Kernel Configuration
|
||||
# Linux/x86 4.14.81-ipfire Kernel Configuration
|
||||
#
|
||||
CONFIG_64BIT=y
|
||||
CONFIG_X86_64=y
|
||||
@@ -355,7 +355,9 @@ CONFIG_MODULE_UNLOAD=y
|
||||
CONFIG_MODVERSIONS=y
|
||||
CONFIG_MODULE_SRCVERSION_ALL=y
|
||||
# CONFIG_MODULE_SIG is not set
|
||||
# CONFIG_MODULE_COMPRESS is not set
|
||||
CONFIG_MODULE_COMPRESS=y
|
||||
# CONFIG_MODULE_COMPRESS_GZIP is not set
|
||||
CONFIG_MODULE_COMPRESS_XZ=y
|
||||
# CONFIG_TRIM_UNUSED_KSYMS is not set
|
||||
CONFIG_MODULES_TREE_LOOKUP=y
|
||||
CONFIG_BLOCK=y
|
||||
@@ -1632,7 +1634,7 @@ CONFIG_FW_LOADER=y
|
||||
# CONFIG_FIRMWARE_IN_KERNEL is not set
|
||||
CONFIG_EXTRA_FIRMWARE=""
|
||||
CONFIG_FW_LOADER_USER_HELPER=y
|
||||
CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
|
||||
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
||||
CONFIG_WANT_DEV_COREDUMP=y
|
||||
CONFIG_ALLOW_DEV_COREDUMP=y
|
||||
CONFIG_DEV_COREDUMP=y
|
||||
|
||||
@@ -1,49 +1,47 @@
|
||||
#etc/ld.so.cache
|
||||
etc/rpc
|
||||
lib/ld-2.27.so
|
||||
lib/ld-2.28.so
|
||||
lib/ld-linux-aarch64.so.1
|
||||
lib/libBrokenLocale-2.27.so
|
||||
lib/libBrokenLocale-2.28.so
|
||||
lib/libBrokenLocale.so.1
|
||||
#lib/libSegFault.so
|
||||
lib/libanl-2.27.so
|
||||
lib/libanl-2.28.so
|
||||
lib/libanl.so.1
|
||||
lib/libc-2.27.so
|
||||
lib/libc-2.28.so
|
||||
lib/libc.so.6
|
||||
lib/libcidn-2.27.so
|
||||
lib/libcidn.so.1
|
||||
lib/libcrypt-2.27.so
|
||||
lib/libcrypt-2.28.so
|
||||
lib/libcrypt.so.1
|
||||
lib/libdl-2.27.so
|
||||
lib/libdl-2.28.so
|
||||
lib/libdl.so.2
|
||||
lib/libm-2.27.so
|
||||
lib/libm-2.28.so
|
||||
lib/libm.so.6
|
||||
#lib/libmemusage.so
|
||||
lib/libnsl-2.27.so
|
||||
lib/libnsl-2.28.so
|
||||
lib/libnsl.so.1
|
||||
lib/libnss_compat-2.27.so
|
||||
lib/libnss_compat-2.28.so
|
||||
lib/libnss_compat.so.2
|
||||
lib/libnss_db-2.27.so
|
||||
lib/libnss_db-2.28.so
|
||||
lib/libnss_db.so.2
|
||||
lib/libnss_dns-2.27.so
|
||||
lib/libnss_dns-2.28.so
|
||||
lib/libnss_dns.so.2
|
||||
lib/libnss_files-2.27.so
|
||||
lib/libnss_files-2.28.so
|
||||
lib/libnss_files.so.2
|
||||
lib/libnss_hesiod-2.27.so
|
||||
lib/libnss_hesiod-2.28.so
|
||||
lib/libnss_hesiod.so.2
|
||||
lib/libnss_nis-2.27.so
|
||||
lib/libnss_nis-2.28.so
|
||||
lib/libnss_nis.so.2
|
||||
lib/libnss_nisplus-2.27.so
|
||||
lib/libnss_nisplus-2.28.so
|
||||
lib/libnss_nisplus.so.2
|
||||
#lib/libpcprofile.so
|
||||
lib/libpthread-2.27.so
|
||||
lib/libpthread-2.28.so
|
||||
lib/libpthread.so.0
|
||||
lib/libresolv-2.27.so
|
||||
lib/libresolv-2.28.so
|
||||
lib/libresolv.so.2
|
||||
lib/librt-2.27.so
|
||||
lib/librt-2.28.so
|
||||
lib/librt.so.1
|
||||
lib/libthread_db-1.0.so
|
||||
lib/libthread_db.so.1
|
||||
lib/libutil-2.27.so
|
||||
lib/libutil-2.28.so
|
||||
lib/libutil.so.1
|
||||
sbin/ldconfig
|
||||
#sbin/sln
|
||||
@@ -64,7 +62,6 @@ usr/bin/locale
|
||||
#usr/bin/sprof
|
||||
#usr/bin/tzselect
|
||||
#usr/bin/xtrace
|
||||
#usr/include/_G_config.h
|
||||
#usr/include/a.out.h
|
||||
#usr/include/aio.h
|
||||
#usr/include/aliases.h
|
||||
@@ -81,9 +78,7 @@ usr/bin/locale
|
||||
#usr/include/arpa/tftp.h
|
||||
#usr/include/assert.h
|
||||
#usr/include/bits
|
||||
#usr/include/bits/_G_config.h
|
||||
#usr/include/bits/a.out.h
|
||||
#usr/include/bits/byteswap-16.h
|
||||
#usr/include/bits/byteswap.h
|
||||
#usr/include/bits/cmathcalls.h
|
||||
#usr/include/bits/confname.h
|
||||
@@ -112,6 +107,7 @@ usr/bin/locale
|
||||
#usr/include/bits/getopt_posix.h
|
||||
#usr/include/bits/hwcap.h
|
||||
#usr/include/bits/in.h
|
||||
#usr/include/bits/indirect-return.h
|
||||
#usr/include/bits/initspin.h
|
||||
#usr/include/bits/inotify.h
|
||||
#usr/include/bits/ioctl-types.h
|
||||
@@ -120,8 +116,6 @@ usr/bin/locale
|
||||
#usr/include/bits/ipctypes.h
|
||||
#usr/include/bits/iscanonical.h
|
||||
#usr/include/bits/libc-header-start.h
|
||||
#usr/include/bits/libio-ldbl.h
|
||||
#usr/include/bits/libio.h
|
||||
#usr/include/bits/libm-simd-decl-stubs.h
|
||||
#usr/include/bits/link.h
|
||||
#usr/include/bits/local_lim.h
|
||||
@@ -130,6 +124,7 @@ usr/bin/locale
|
||||
#usr/include/bits/math-finite.h
|
||||
#usr/include/bits/math-vector.h
|
||||
#usr/include/bits/mathcalls-helper-functions.h
|
||||
#usr/include/bits/mathcalls-narrow.h
|
||||
#usr/include/bits/mathcalls.h
|
||||
#usr/include/bits/mathdef.h
|
||||
#usr/include/bits/mathinline.h
|
||||
@@ -180,6 +175,7 @@ usr/bin/locale
|
||||
#usr/include/bits/stat.h
|
||||
#usr/include/bits/statfs.h
|
||||
#usr/include/bits/statvfs.h
|
||||
#usr/include/bits/statx.h
|
||||
#usr/include/bits/stdint-intn.h
|
||||
#usr/include/bits/stdint-uintn.h
|
||||
#usr/include/bits/stdio-ldbl.h
|
||||
@@ -209,12 +205,16 @@ usr/bin/locale
|
||||
#usr/include/bits/types.h
|
||||
#usr/include/bits/types/FILE.h
|
||||
#usr/include/bits/types/__FILE.h
|
||||
#usr/include/bits/types/__fpos64_t.h
|
||||
#usr/include/bits/types/__fpos_t.h
|
||||
#usr/include/bits/types/__locale_t.h
|
||||
#usr/include/bits/types/__mbstate_t.h
|
||||
#usr/include/bits/types/__sigset_t.h
|
||||
#usr/include/bits/types/__sigval_t.h
|
||||
#usr/include/bits/types/clock_t.h
|
||||
#usr/include/bits/types/clockid_t.h
|
||||
#usr/include/bits/types/cookie_io_functions_t.h
|
||||
#usr/include/bits/types/error_t.h
|
||||
#usr/include/bits/types/locale_t.h
|
||||
#usr/include/bits/types/mbstate_t.h
|
||||
#usr/include/bits/types/res_state.h
|
||||
@@ -224,10 +224,12 @@ usr/bin/locale
|
||||
#usr/include/bits/types/sigset_t.h
|
||||
#usr/include/bits/types/sigval_t.h
|
||||
#usr/include/bits/types/stack_t.h
|
||||
#usr/include/bits/types/struct_FILE.h
|
||||
#usr/include/bits/types/struct_iovec.h
|
||||
#usr/include/bits/types/struct_itimerspec.h
|
||||
#usr/include/bits/types/struct_osockaddr.h
|
||||
#usr/include/bits/types/struct_rusage.h
|
||||
#usr/include/bits/types/struct_sched_param.h
|
||||
#usr/include/bits/types/struct_sigstack.h
|
||||
#usr/include/bits/types/struct_timespec.h
|
||||
#usr/include/bits/types/struct_timeval.h
|
||||
@@ -240,7 +242,6 @@ usr/bin/locale
|
||||
#usr/include/bits/uio-ext.h
|
||||
#usr/include/bits/uio_lim.h
|
||||
#usr/include/bits/unistd.h
|
||||
#usr/include/bits/ustat.h
|
||||
#usr/include/bits/utmp.h
|
||||
#usr/include/bits/utmpx.h
|
||||
#usr/include/bits/utsname.h
|
||||
@@ -296,7 +297,6 @@ usr/bin/locale
|
||||
#usr/include/lastlog.h
|
||||
#usr/include/libgen.h
|
||||
#usr/include/libintl.h
|
||||
#usr/include/libio.h
|
||||
#usr/include/limits.h
|
||||
#usr/include/link.h
|
||||
#usr/include/locale.h
|
||||
@@ -377,14 +377,12 @@ usr/bin/locale
|
||||
#usr/include/rpc/auth_des.h
|
||||
#usr/include/rpc/auth_unix.h
|
||||
#usr/include/rpc/clnt.h
|
||||
#usr/include/rpc/des_crypt.h
|
||||
#usr/include/rpc/key_prot.h
|
||||
#usr/include/rpc/netdb.h
|
||||
#usr/include/rpc/pmap_clnt.h
|
||||
#usr/include/rpc/pmap_prot.h
|
||||
#usr/include/rpc/pmap_rmt.h
|
||||
#usr/include/rpc/rpc.h
|
||||
#usr/include/rpc/rpc_des.h
|
||||
#usr/include/rpc/rpc_msg.h
|
||||
#usr/include/rpc/svc.h
|
||||
#usr/include/rpc/svc_auth.h
|
||||
@@ -522,7 +520,6 @@ usr/bin/locale
|
||||
#usr/include/sys/un.h
|
||||
#usr/include/sys/unistd.h
|
||||
#usr/include/sys/user.h
|
||||
#usr/include/sys/ustat.h
|
||||
#usr/include/sys/utsname.h
|
||||
#usr/include/sys/vfs.h
|
||||
#usr/include/sys/vlimit.h
|
||||
@@ -538,13 +535,13 @@ usr/bin/locale
|
||||
#usr/include/termios.h
|
||||
#usr/include/tgmath.h
|
||||
#usr/include/thread_db.h
|
||||
#usr/include/threads.h
|
||||
#usr/include/time.h
|
||||
#usr/include/ttyent.h
|
||||
#usr/include/uchar.h
|
||||
#usr/include/ucontext.h
|
||||
#usr/include/ulimit.h
|
||||
#usr/include/unistd.h
|
||||
#usr/include/ustat.h
|
||||
#usr/include/utime.h
|
||||
#usr/include/utmp.h
|
||||
#usr/include/utmpx.h
|
||||
@@ -828,7 +825,6 @@ usr/lib/gconv
|
||||
#usr/lib/libc.a
|
||||
#usr/lib/libc.so
|
||||
#usr/lib/libc_nonshared.a
|
||||
#usr/lib/libcidn.so
|
||||
#usr/lib/libcrypt.a
|
||||
#usr/lib/libcrypt.so
|
||||
#usr/lib/libdl.a
|
||||
@@ -848,7 +844,6 @@ usr/lib/gconv
|
||||
#usr/lib/libnss_nisplus.so
|
||||
#usr/lib/libpthread.a
|
||||
#usr/lib/libpthread.so
|
||||
#usr/lib/libpthread_nonshared.a
|
||||
#usr/lib/libresolv.a
|
||||
#usr/lib/libresolv.so
|
||||
#usr/lib/librpcsvc.a
|
||||
@@ -2510,6 +2505,20 @@ usr/lib/locale
|
||||
#usr/lib/locale/doi_IN/LC_PAPER
|
||||
#usr/lib/locale/doi_IN/LC_TELEPHONE
|
||||
#usr/lib/locale/doi_IN/LC_TIME
|
||||
#usr/lib/locale/dsb_DE
|
||||
#usr/lib/locale/dsb_DE/LC_ADDRESS
|
||||
#usr/lib/locale/dsb_DE/LC_COLLATE
|
||||
#usr/lib/locale/dsb_DE/LC_CTYPE
|
||||
#usr/lib/locale/dsb_DE/LC_IDENTIFICATION
|
||||
#usr/lib/locale/dsb_DE/LC_MEASUREMENT
|
||||
#usr/lib/locale/dsb_DE/LC_MESSAGES
|
||||
#usr/lib/locale/dsb_DE/LC_MESSAGES/SYS_LC_MESSAGES
|
||||
#usr/lib/locale/dsb_DE/LC_MONETARY
|
||||
#usr/lib/locale/dsb_DE/LC_NAME
|
||||
#usr/lib/locale/dsb_DE/LC_NUMERIC
|
||||
#usr/lib/locale/dsb_DE/LC_PAPER
|
||||
#usr/lib/locale/dsb_DE/LC_TELEPHONE
|
||||
#usr/lib/locale/dsb_DE/LC_TIME
|
||||
#usr/lib/locale/dv_MV
|
||||
#usr/lib/locale/dv_MV/LC_ADDRESS
|
||||
#usr/lib/locale/dv_MV/LC_COLLATE
|
||||
@@ -6206,6 +6215,20 @@ usr/lib/locale
|
||||
#usr/lib/locale/sa_IN/LC_PAPER
|
||||
#usr/lib/locale/sa_IN/LC_TELEPHONE
|
||||
#usr/lib/locale/sa_IN/LC_TIME
|
||||
#usr/lib/locale/sah_RU
|
||||
#usr/lib/locale/sah_RU/LC_ADDRESS
|
||||
#usr/lib/locale/sah_RU/LC_COLLATE
|
||||
#usr/lib/locale/sah_RU/LC_CTYPE
|
||||
#usr/lib/locale/sah_RU/LC_IDENTIFICATION
|
||||
#usr/lib/locale/sah_RU/LC_MEASUREMENT
|
||||
#usr/lib/locale/sah_RU/LC_MESSAGES
|
||||
#usr/lib/locale/sah_RU/LC_MESSAGES/SYS_LC_MESSAGES
|
||||
#usr/lib/locale/sah_RU/LC_MONETARY
|
||||
#usr/lib/locale/sah_RU/LC_NAME
|
||||
#usr/lib/locale/sah_RU/LC_NUMERIC
|
||||
#usr/lib/locale/sah_RU/LC_PAPER
|
||||
#usr/lib/locale/sah_RU/LC_TELEPHONE
|
||||
#usr/lib/locale/sah_RU/LC_TIME
|
||||
#usr/lib/locale/sat_IN
|
||||
#usr/lib/locale/sat_IN/LC_ADDRESS
|
||||
#usr/lib/locale/sat_IN/LC_COLLATE
|
||||
@@ -7956,6 +7979,7 @@ usr/lib/locale
|
||||
#usr/share/i18n/locales/de_LU
|
||||
#usr/share/i18n/locales/de_LU@euro
|
||||
#usr/share/i18n/locales/doi_IN
|
||||
#usr/share/i18n/locales/dsb_DE
|
||||
#usr/share/i18n/locales/dv_MV
|
||||
#usr/share/i18n/locales/dz_BT
|
||||
#usr/share/i18n/locales/el_CY
|
||||
@@ -8139,6 +8163,7 @@ usr/lib/locale
|
||||
#usr/share/i18n/locales/ru_UA
|
||||
#usr/share/i18n/locales/rw_RW
|
||||
#usr/share/i18n/locales/sa_IN
|
||||
#usr/share/i18n/locales/sah_RU
|
||||
#usr/share/i18n/locales/sat_IN
|
||||
#usr/share/i18n/locales/sc_IT
|
||||
#usr/share/i18n/locales/sd_IN
|
||||
|
||||
@@ -184,11 +184,11 @@ etc/rc.d/rcsysinit.d/S45udev_retry
|
||||
etc/rc.d/rcsysinit.d/S50cleanfs
|
||||
etc/rc.d/rcsysinit.d/S60setclock
|
||||
etc/rc.d/rcsysinit.d/S70console
|
||||
etc/rc.d/rcsysinit.d/S71pakfire
|
||||
etc/rc.d/rcsysinit.d/S73swconfig
|
||||
etc/rc.d/rcsysinit.d/S74aws
|
||||
etc/rc.d/rcsysinit.d/S75firstsetup
|
||||
etc/rc.d/rcsysinit.d/S80localnet
|
||||
etc/rc.d/rcsysinit.d/S81pakfire
|
||||
etc/rc.d/rcsysinit.d/S85firewall
|
||||
etc/rc.d/rcsysinit.d/S92rngd
|
||||
#etc/sysconfig
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -46,17 +46,6 @@ etc/httpd/conf/vhosts.d/ipfire-interface-ssl.conf
|
||||
etc/httpd/conf/vhosts.d/ipfire-interface.conf
|
||||
#srv/web
|
||||
#srv/web/ipfire
|
||||
#srv/web/ipfire/manual/howto/access.html.es
|
||||
#srv/web/ipfire/manual/howto/auth.html.es
|
||||
#srv/web/ipfire/manual/howto/cgi.html.es
|
||||
#srv/web/ipfire/manual/howto/htaccess.html.es
|
||||
#srv/web/ipfire/manual/howto/http2.html.es
|
||||
#srv/web/ipfire/manual/howto/http2.html.fr
|
||||
#srv/web/ipfire/manual/howto/index.html.es
|
||||
#srv/web/ipfire/manual/howto/public_html.html.es
|
||||
#srv/web/ipfire/manual/mod/directive-dict.html.es
|
||||
#srv/web/ipfire/manual/mod/mod_brotli.html
|
||||
#srv/web/ipfire/manual/mod/mod_brotli.html.en
|
||||
#srv/web/ipfire/cgi-bin
|
||||
#srv/web/ipfire/cgi-bin/printenv
|
||||
#srv/web/ipfire/cgi-bin/printenv.vbs
|
||||
@@ -452,42 +441,52 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/howto
|
||||
#srv/web/ipfire/manual/howto/access.html
|
||||
#srv/web/ipfire/manual/howto/access.html.en
|
||||
#srv/web/ipfire/manual/howto/access.html.es
|
||||
#srv/web/ipfire/manual/howto/access.html.fr
|
||||
#srv/web/ipfire/manual/howto/auth.html
|
||||
#srv/web/ipfire/manual/howto/auth.html.en
|
||||
#srv/web/ipfire/manual/howto/auth.html.es
|
||||
#srv/web/ipfire/manual/howto/auth.html.fr
|
||||
#srv/web/ipfire/manual/howto/auth.html.ja.utf8
|
||||
#srv/web/ipfire/manual/howto/auth.html.ko.euc-kr
|
||||
#srv/web/ipfire/manual/howto/auth.html.tr.utf8
|
||||
#srv/web/ipfire/manual/howto/cgi.html
|
||||
#srv/web/ipfire/manual/howto/cgi.html.en
|
||||
#srv/web/ipfire/manual/howto/cgi.html.es
|
||||
#srv/web/ipfire/manual/howto/cgi.html.fr
|
||||
#srv/web/ipfire/manual/howto/cgi.html.ja.utf8
|
||||
#srv/web/ipfire/manual/howto/cgi.html.ko.euc-kr
|
||||
#srv/web/ipfire/manual/howto/htaccess.html
|
||||
#srv/web/ipfire/manual/howto/htaccess.html.en
|
||||
#srv/web/ipfire/manual/howto/htaccess.html.es
|
||||
#srv/web/ipfire/manual/howto/htaccess.html.fr
|
||||
#srv/web/ipfire/manual/howto/htaccess.html.ja.utf8
|
||||
#srv/web/ipfire/manual/howto/htaccess.html.ko.euc-kr
|
||||
#srv/web/ipfire/manual/howto/htaccess.html.pt-br
|
||||
#srv/web/ipfire/manual/howto/http2.html
|
||||
#srv/web/ipfire/manual/howto/http2.html.en
|
||||
#srv/web/ipfire/manual/howto/http2.html.es
|
||||
#srv/web/ipfire/manual/howto/http2.html.fr
|
||||
#srv/web/ipfire/manual/howto/index.html
|
||||
#srv/web/ipfire/manual/howto/index.html.en
|
||||
#srv/web/ipfire/manual/howto/index.html.es
|
||||
#srv/web/ipfire/manual/howto/index.html.fr
|
||||
#srv/web/ipfire/manual/howto/index.html.ja.utf8
|
||||
#srv/web/ipfire/manual/howto/index.html.ko.euc-kr
|
||||
#srv/web/ipfire/manual/howto/index.html.zh-cn.utf8
|
||||
#srv/web/ipfire/manual/howto/public_html.html
|
||||
#srv/web/ipfire/manual/howto/public_html.html.en
|
||||
#srv/web/ipfire/manual/howto/public_html.html.es
|
||||
#srv/web/ipfire/manual/howto/public_html.html.fr
|
||||
#srv/web/ipfire/manual/howto/public_html.html.ja.utf8
|
||||
#srv/web/ipfire/manual/howto/public_html.html.ko.euc-kr
|
||||
#srv/web/ipfire/manual/howto/public_html.html.tr.utf8
|
||||
#srv/web/ipfire/manual/howto/reverse_proxy.html
|
||||
#srv/web/ipfire/manual/howto/reverse_proxy.html.en
|
||||
#srv/web/ipfire/manual/howto/reverse_proxy.html.fr
|
||||
#srv/web/ipfire/manual/howto/ssi.html
|
||||
#srv/web/ipfire/manual/howto/ssi.html.en
|
||||
#srv/web/ipfire/manual/howto/ssi.html.es
|
||||
#srv/web/ipfire/manual/howto/ssi.html.fr
|
||||
#srv/web/ipfire/manual/howto/ssi.html.ja.utf8
|
||||
#srv/web/ipfire/manual/howto/ssi.html.ko.euc-kr
|
||||
@@ -575,6 +574,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/misc
|
||||
#srv/web/ipfire/manual/misc/index.html
|
||||
#srv/web/ipfire/manual/misc/index.html.en
|
||||
#srv/web/ipfire/manual/misc/index.html.es
|
||||
#srv/web/ipfire/manual/misc/index.html.fr
|
||||
#srv/web/ipfire/manual/misc/index.html.ko.euc-kr
|
||||
#srv/web/ipfire/manual/misc/index.html.tr.utf8
|
||||
@@ -606,6 +606,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/mod/core.html.tr.utf8
|
||||
#srv/web/ipfire/manual/mod/directive-dict.html
|
||||
#srv/web/ipfire/manual/mod/directive-dict.html.en
|
||||
#srv/web/ipfire/manual/mod/directive-dict.html.es
|
||||
#srv/web/ipfire/manual/mod/directive-dict.html.fr
|
||||
#srv/web/ipfire/manual/mod/directive-dict.html.ja.utf8
|
||||
#srv/web/ipfire/manual/mod/directive-dict.html.ko.euc-kr
|
||||
@@ -693,6 +694,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/mod/mod_authn_socache.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_authnz_fcgi.html
|
||||
#srv/web/ipfire/manual/mod/mod_authnz_fcgi.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_authnz_fcgi.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_authnz_ldap.html
|
||||
#srv/web/ipfire/manual/mod/mod_authnz_ldap.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_authnz_ldap.html.fr
|
||||
@@ -730,6 +732,9 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/mod/mod_autoindex.html.ja.utf8
|
||||
#srv/web/ipfire/manual/mod/mod_autoindex.html.ko.euc-kr
|
||||
#srv/web/ipfire/manual/mod/mod_autoindex.html.tr.utf8
|
||||
#srv/web/ipfire/manual/mod/mod_brotli.html
|
||||
#srv/web/ipfire/manual/mod/mod_brotli.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_brotli.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_buffer.html
|
||||
#srv/web/ipfire/manual/mod/mod_buffer.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_buffer.html.fr
|
||||
@@ -847,6 +852,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/mod/mod_heartmonitor.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_http2.html
|
||||
#srv/web/ipfire/manual/mod/mod_http2.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_http2.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_ident.html
|
||||
#srv/web/ipfire/manual/mod/mod_ident.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_ident.html.fr
|
||||
@@ -959,6 +965,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_ftp.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_hcheck.html
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_hcheck.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_hcheck.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_html.html
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_html.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_html.html.fr
|
||||
@@ -967,6 +974,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_http.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_http2.html
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_http2.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_http2.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_scgi.html
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_scgi.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_scgi.html.fr
|
||||
@@ -974,6 +982,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_uwsgi.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_wstunnel.html
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_wstunnel.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_proxy_wstunnel.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_ratelimit.html
|
||||
#srv/web/ipfire/manual/mod/mod_ratelimit.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_ratelimit.html.fr
|
||||
@@ -1081,6 +1090,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/mod/mod_usertrack.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_version.html
|
||||
#srv/web/ipfire/manual/mod/mod_version.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_version.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_version.html.ja.utf8
|
||||
#srv/web/ipfire/manual/mod/mod_version.html.ko.euc-kr
|
||||
#srv/web/ipfire/manual/mod/mod_vhost_alias.html
|
||||
@@ -1089,6 +1099,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/mod/mod_vhost_alias.html.tr.utf8
|
||||
#srv/web/ipfire/manual/mod/mod_watchdog.html
|
||||
#srv/web/ipfire/manual/mod/mod_watchdog.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_watchdog.html.fr
|
||||
#srv/web/ipfire/manual/mod/mod_xml2enc.html
|
||||
#srv/web/ipfire/manual/mod/mod_xml2enc.html.en
|
||||
#srv/web/ipfire/manual/mod/mod_xml2enc.html.fr
|
||||
@@ -1185,6 +1196,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/platform/perf-hp.html.ko.euc-kr
|
||||
#srv/web/ipfire/manual/platform/rpm.html
|
||||
#srv/web/ipfire/manual/platform/rpm.html.en
|
||||
#srv/web/ipfire/manual/platform/rpm.html.fr
|
||||
#srv/web/ipfire/manual/platform/win_compiling.html
|
||||
#srv/web/ipfire/manual/platform/win_compiling.html.en
|
||||
#srv/web/ipfire/manual/platform/win_compiling.html.fr
|
||||
@@ -1260,6 +1272,7 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/programs/index.html.zh-cn.utf8
|
||||
#srv/web/ipfire/manual/programs/log_server_status.html
|
||||
#srv/web/ipfire/manual/programs/log_server_status.html.en
|
||||
#srv/web/ipfire/manual/programs/log_server_status.html.fr
|
||||
#srv/web/ipfire/manual/programs/logresolve.html
|
||||
#srv/web/ipfire/manual/programs/logresolve.html.en
|
||||
#srv/web/ipfire/manual/programs/logresolve.html.fr
|
||||
@@ -1277,8 +1290,10 @@ srv/web/ipfire/html/captive
|
||||
#srv/web/ipfire/manual/programs/rotatelogs.html.tr.utf8
|
||||
#srv/web/ipfire/manual/programs/split-logfile.html
|
||||
#srv/web/ipfire/manual/programs/split-logfile.html.en
|
||||
#srv/web/ipfire/manual/programs/split-logfile.html.fr
|
||||
#srv/web/ipfire/manual/programs/suexec.html
|
||||
#srv/web/ipfire/manual/programs/suexec.html.en
|
||||
#srv/web/ipfire/manual/programs/suexec.html.fr
|
||||
#srv/web/ipfire/manual/programs/suexec.html.ko.euc-kr
|
||||
#srv/web/ipfire/manual/programs/suexec.html.tr.utf8
|
||||
#srv/web/ipfire/manual/rewrite
|
||||
@@ -1644,7 +1659,6 @@ usr/lib/apache/mod_version.so
|
||||
usr/lib/apache/mod_vhost_alias.so
|
||||
usr/lib/apache/mod_watchdog.so
|
||||
usr/lib/apache/mod_xml2enc.so
|
||||
#usr/sbin/ab
|
||||
usr/sbin/apachectl
|
||||
#usr/sbin/checkgid
|
||||
#usr/sbin/envvars
|
||||
|
||||
@@ -1,49 +1,47 @@
|
||||
#etc/ld.so.cache
|
||||
etc/rpc
|
||||
lib/ld-2.27.so
|
||||
lib/ld-2.28.so
|
||||
lib/ld-linux.so.3
|
||||
lib/libBrokenLocale-2.27.so
|
||||
lib/libBrokenLocale-2.28.so
|
||||
lib/libBrokenLocale.so.1
|
||||
#lib/libSegFault.so
|
||||
lib/libanl-2.27.so
|
||||
lib/libanl-2.28.so
|
||||
lib/libanl.so.1
|
||||
lib/libc-2.27.so
|
||||
lib/libc-2.28.so
|
||||
lib/libc.so.6
|
||||
lib/libcidn-2.27.so
|
||||
lib/libcidn.so.1
|
||||
lib/libcrypt-2.27.so
|
||||
lib/libcrypt-2.28.so
|
||||
lib/libcrypt.so.1
|
||||
lib/libdl-2.27.so
|
||||
lib/libdl-2.28.so
|
||||
lib/libdl.so.2
|
||||
lib/libm-2.27.so
|
||||
lib/libm-2.28.so
|
||||
lib/libm.so.6
|
||||
#lib/libmemusage.so
|
||||
lib/libnsl-2.27.so
|
||||
lib/libnsl-2.28.so
|
||||
lib/libnsl.so.1
|
||||
lib/libnss_compat-2.27.so
|
||||
lib/libnss_compat-2.28.so
|
||||
lib/libnss_compat.so.2
|
||||
lib/libnss_db-2.27.so
|
||||
lib/libnss_db-2.28.so
|
||||
lib/libnss_db.so.2
|
||||
lib/libnss_dns-2.27.so
|
||||
lib/libnss_dns-2.28.so
|
||||
lib/libnss_dns.so.2
|
||||
lib/libnss_files-2.27.so
|
||||
lib/libnss_files-2.28.so
|
||||
lib/libnss_files.so.2
|
||||
lib/libnss_hesiod-2.27.so
|
||||
lib/libnss_hesiod-2.28.so
|
||||
lib/libnss_hesiod.so.2
|
||||
lib/libnss_nis-2.27.so
|
||||
lib/libnss_nis-2.28.so
|
||||
lib/libnss_nis.so.2
|
||||
lib/libnss_nisplus-2.27.so
|
||||
lib/libnss_nisplus-2.28.so
|
||||
lib/libnss_nisplus.so.2
|
||||
#lib/libpcprofile.so
|
||||
lib/libpthread-2.27.so
|
||||
lib/libpthread-2.28.so
|
||||
lib/libpthread.so.0
|
||||
lib/libresolv-2.27.so
|
||||
lib/libresolv-2.28.so
|
||||
lib/libresolv.so.2
|
||||
lib/librt-2.27.so
|
||||
lib/librt-2.28.so
|
||||
lib/librt.so.1
|
||||
lib/libthread_db-1.0.so
|
||||
lib/libthread_db.so.1
|
||||
lib/libutil-2.27.so
|
||||
lib/libutil-2.28.so
|
||||
lib/libutil.so.1
|
||||
sbin/ldconfig
|
||||
#sbin/sln
|
||||
@@ -64,7 +62,6 @@ usr/bin/locale
|
||||
#usr/bin/sprof
|
||||
#usr/bin/tzselect
|
||||
#usr/bin/xtrace
|
||||
#usr/include/_G_config.h
|
||||
#usr/include/a.out.h
|
||||
#usr/include/aio.h
|
||||
#usr/include/aliases.h
|
||||
@@ -81,9 +78,7 @@ usr/bin/locale
|
||||
#usr/include/arpa/tftp.h
|
||||
#usr/include/assert.h
|
||||
#usr/include/bits
|
||||
#usr/include/bits/_G_config.h
|
||||
#usr/include/bits/a.out.h
|
||||
#usr/include/bits/byteswap-16.h
|
||||
#usr/include/bits/byteswap.h
|
||||
#usr/include/bits/cmathcalls.h
|
||||
#usr/include/bits/confname.h
|
||||
@@ -112,6 +107,7 @@ usr/bin/locale
|
||||
#usr/include/bits/getopt_posix.h
|
||||
#usr/include/bits/hwcap.h
|
||||
#usr/include/bits/in.h
|
||||
#usr/include/bits/indirect-return.h
|
||||
#usr/include/bits/initspin.h
|
||||
#usr/include/bits/inotify.h
|
||||
#usr/include/bits/ioctl-types.h
|
||||
@@ -120,8 +116,6 @@ usr/bin/locale
|
||||
#usr/include/bits/ipctypes.h
|
||||
#usr/include/bits/iscanonical.h
|
||||
#usr/include/bits/libc-header-start.h
|
||||
#usr/include/bits/libio-ldbl.h
|
||||
#usr/include/bits/libio.h
|
||||
#usr/include/bits/libm-simd-decl-stubs.h
|
||||
#usr/include/bits/link.h
|
||||
#usr/include/bits/local_lim.h
|
||||
@@ -130,6 +124,7 @@ usr/bin/locale
|
||||
#usr/include/bits/math-finite.h
|
||||
#usr/include/bits/math-vector.h
|
||||
#usr/include/bits/mathcalls-helper-functions.h
|
||||
#usr/include/bits/mathcalls-narrow.h
|
||||
#usr/include/bits/mathcalls.h
|
||||
#usr/include/bits/mathdef.h
|
||||
#usr/include/bits/mathinline.h
|
||||
@@ -180,6 +175,7 @@ usr/bin/locale
|
||||
#usr/include/bits/stat.h
|
||||
#usr/include/bits/statfs.h
|
||||
#usr/include/bits/statvfs.h
|
||||
#usr/include/bits/statx.h
|
||||
#usr/include/bits/stdint-intn.h
|
||||
#usr/include/bits/stdint-uintn.h
|
||||
#usr/include/bits/stdio-ldbl.h
|
||||
@@ -209,12 +205,16 @@ usr/bin/locale
|
||||
#usr/include/bits/types.h
|
||||
#usr/include/bits/types/FILE.h
|
||||
#usr/include/bits/types/__FILE.h
|
||||
#usr/include/bits/types/__fpos64_t.h
|
||||
#usr/include/bits/types/__fpos_t.h
|
||||
#usr/include/bits/types/__locale_t.h
|
||||
#usr/include/bits/types/__mbstate_t.h
|
||||
#usr/include/bits/types/__sigset_t.h
|
||||
#usr/include/bits/types/__sigval_t.h
|
||||
#usr/include/bits/types/clock_t.h
|
||||
#usr/include/bits/types/clockid_t.h
|
||||
#usr/include/bits/types/cookie_io_functions_t.h
|
||||
#usr/include/bits/types/error_t.h
|
||||
#usr/include/bits/types/locale_t.h
|
||||
#usr/include/bits/types/mbstate_t.h
|
||||
#usr/include/bits/types/res_state.h
|
||||
@@ -224,10 +224,12 @@ usr/bin/locale
|
||||
#usr/include/bits/types/sigset_t.h
|
||||
#usr/include/bits/types/sigval_t.h
|
||||
#usr/include/bits/types/stack_t.h
|
||||
#usr/include/bits/types/struct_FILE.h
|
||||
#usr/include/bits/types/struct_iovec.h
|
||||
#usr/include/bits/types/struct_itimerspec.h
|
||||
#usr/include/bits/types/struct_osockaddr.h
|
||||
#usr/include/bits/types/struct_rusage.h
|
||||
#usr/include/bits/types/struct_sched_param.h
|
||||
#usr/include/bits/types/struct_sigstack.h
|
||||
#usr/include/bits/types/struct_timespec.h
|
||||
#usr/include/bits/types/struct_timeval.h
|
||||
@@ -240,7 +242,6 @@ usr/bin/locale
|
||||
#usr/include/bits/uio-ext.h
|
||||
#usr/include/bits/uio_lim.h
|
||||
#usr/include/bits/unistd.h
|
||||
#usr/include/bits/ustat.h
|
||||
#usr/include/bits/utmp.h
|
||||
#usr/include/bits/utmpx.h
|
||||
#usr/include/bits/utsname.h
|
||||
@@ -296,7 +297,6 @@ usr/bin/locale
|
||||
#usr/include/lastlog.h
|
||||
#usr/include/libgen.h
|
||||
#usr/include/libintl.h
|
||||
#usr/include/libio.h
|
||||
#usr/include/limits.h
|
||||
#usr/include/link.h
|
||||
#usr/include/locale.h
|
||||
@@ -377,14 +377,12 @@ usr/bin/locale
|
||||
#usr/include/rpc/auth_des.h
|
||||
#usr/include/rpc/auth_unix.h
|
||||
#usr/include/rpc/clnt.h
|
||||
#usr/include/rpc/des_crypt.h
|
||||
#usr/include/rpc/key_prot.h
|
||||
#usr/include/rpc/netdb.h
|
||||
#usr/include/rpc/pmap_clnt.h
|
||||
#usr/include/rpc/pmap_prot.h
|
||||
#usr/include/rpc/pmap_rmt.h
|
||||
#usr/include/rpc/rpc.h
|
||||
#usr/include/rpc/rpc_des.h
|
||||
#usr/include/rpc/rpc_msg.h
|
||||
#usr/include/rpc/svc.h
|
||||
#usr/include/rpc/svc_auth.h
|
||||
@@ -523,7 +521,6 @@ usr/bin/locale
|
||||
#usr/include/sys/un.h
|
||||
#usr/include/sys/unistd.h
|
||||
#usr/include/sys/user.h
|
||||
#usr/include/sys/ustat.h
|
||||
#usr/include/sys/utsname.h
|
||||
#usr/include/sys/vfs.h
|
||||
#usr/include/sys/vlimit.h
|
||||
@@ -539,13 +536,13 @@ usr/bin/locale
|
||||
#usr/include/termios.h
|
||||
#usr/include/tgmath.h
|
||||
#usr/include/thread_db.h
|
||||
#usr/include/threads.h
|
||||
#usr/include/time.h
|
||||
#usr/include/ttyent.h
|
||||
#usr/include/uchar.h
|
||||
#usr/include/ucontext.h
|
||||
#usr/include/ulimit.h
|
||||
#usr/include/unistd.h
|
||||
#usr/include/ustat.h
|
||||
#usr/include/utime.h
|
||||
#usr/include/utmp.h
|
||||
#usr/include/utmpx.h
|
||||
@@ -832,7 +829,6 @@ usr/lib/gconv
|
||||
#usr/lib/libc.a
|
||||
#usr/lib/libc.so
|
||||
#usr/lib/libc_nonshared.a
|
||||
#usr/lib/libcidn.so
|
||||
#usr/lib/libcrypt.a
|
||||
#usr/lib/libcrypt.so
|
||||
#usr/lib/libdl.a
|
||||
@@ -852,7 +848,6 @@ usr/lib/gconv
|
||||
#usr/lib/libnss_nisplus.so
|
||||
#usr/lib/libpthread.a
|
||||
#usr/lib/libpthread.so
|
||||
#usr/lib/libpthread_nonshared.a
|
||||
#usr/lib/libresolv.a
|
||||
#usr/lib/libresolv.so
|
||||
#usr/lib/librpcsvc.a
|
||||
@@ -2514,6 +2509,20 @@ usr/lib/locale
|
||||
#usr/lib/locale/doi_IN/LC_PAPER
|
||||
#usr/lib/locale/doi_IN/LC_TELEPHONE
|
||||
#usr/lib/locale/doi_IN/LC_TIME
|
||||
#usr/lib/locale/dsb_DE
|
||||
#usr/lib/locale/dsb_DE/LC_ADDRESS
|
||||
#usr/lib/locale/dsb_DE/LC_COLLATE
|
||||
#usr/lib/locale/dsb_DE/LC_CTYPE
|
||||
#usr/lib/locale/dsb_DE/LC_IDENTIFICATION
|
||||
#usr/lib/locale/dsb_DE/LC_MEASUREMENT
|
||||
#usr/lib/locale/dsb_DE/LC_MESSAGES
|
||||
#usr/lib/locale/dsb_DE/LC_MESSAGES/SYS_LC_MESSAGES
|
||||
#usr/lib/locale/dsb_DE/LC_MONETARY
|
||||
#usr/lib/locale/dsb_DE/LC_NAME
|
||||
#usr/lib/locale/dsb_DE/LC_NUMERIC
|
||||
#usr/lib/locale/dsb_DE/LC_PAPER
|
||||
#usr/lib/locale/dsb_DE/LC_TELEPHONE
|
||||
#usr/lib/locale/dsb_DE/LC_TIME
|
||||
#usr/lib/locale/dv_MV
|
||||
#usr/lib/locale/dv_MV/LC_ADDRESS
|
||||
#usr/lib/locale/dv_MV/LC_COLLATE
|
||||
@@ -6210,6 +6219,20 @@ usr/lib/locale
|
||||
#usr/lib/locale/sa_IN/LC_PAPER
|
||||
#usr/lib/locale/sa_IN/LC_TELEPHONE
|
||||
#usr/lib/locale/sa_IN/LC_TIME
|
||||
#usr/lib/locale/sah_RU
|
||||
#usr/lib/locale/sah_RU/LC_ADDRESS
|
||||
#usr/lib/locale/sah_RU/LC_COLLATE
|
||||
#usr/lib/locale/sah_RU/LC_CTYPE
|
||||
#usr/lib/locale/sah_RU/LC_IDENTIFICATION
|
||||
#usr/lib/locale/sah_RU/LC_MEASUREMENT
|
||||
#usr/lib/locale/sah_RU/LC_MESSAGES
|
||||
#usr/lib/locale/sah_RU/LC_MESSAGES/SYS_LC_MESSAGES
|
||||
#usr/lib/locale/sah_RU/LC_MONETARY
|
||||
#usr/lib/locale/sah_RU/LC_NAME
|
||||
#usr/lib/locale/sah_RU/LC_NUMERIC
|
||||
#usr/lib/locale/sah_RU/LC_PAPER
|
||||
#usr/lib/locale/sah_RU/LC_TELEPHONE
|
||||
#usr/lib/locale/sah_RU/LC_TIME
|
||||
#usr/lib/locale/sat_IN
|
||||
#usr/lib/locale/sat_IN/LC_ADDRESS
|
||||
#usr/lib/locale/sat_IN/LC_COLLATE
|
||||
@@ -7960,6 +7983,7 @@ usr/lib/locale
|
||||
#usr/share/i18n/locales/de_LU
|
||||
#usr/share/i18n/locales/de_LU@euro
|
||||
#usr/share/i18n/locales/doi_IN
|
||||
#usr/share/i18n/locales/dsb_DE
|
||||
#usr/share/i18n/locales/dv_MV
|
||||
#usr/share/i18n/locales/dz_BT
|
||||
#usr/share/i18n/locales/el_CY
|
||||
@@ -8143,6 +8167,7 @@ usr/lib/locale
|
||||
#usr/share/i18n/locales/ru_UA
|
||||
#usr/share/i18n/locales/rw_RW
|
||||
#usr/share/i18n/locales/sa_IN
|
||||
#usr/share/i18n/locales/sah_RU
|
||||
#usr/share/i18n/locales/sat_IN
|
||||
#usr/share/i18n/locales/sc_IT
|
||||
#usr/share/i18n/locales/sd_IN
|
||||
|
||||
@@ -184,11 +184,11 @@ etc/rc.d/rcsysinit.d/S45udev_retry
|
||||
etc/rc.d/rcsysinit.d/S50cleanfs
|
||||
etc/rc.d/rcsysinit.d/S60setclock
|
||||
etc/rc.d/rcsysinit.d/S70console
|
||||
etc/rc.d/rcsysinit.d/S71pakfire
|
||||
etc/rc.d/rcsysinit.d/S73swconfig
|
||||
etc/rc.d/rcsysinit.d/S74aws
|
||||
etc/rc.d/rcsysinit.d/S75firstsetup
|
||||
etc/rc.d/rcsysinit.d/S80localnet
|
||||
etc/rc.d/rcsysinit.d/S81pakfire
|
||||
etc/rc.d/rcsysinit.d/S85firewall
|
||||
etc/rc.d/rcsysinit.d/S92rngd
|
||||
#etc/sysconfig
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -3,7 +3,376 @@ usr/bin/dig
|
||||
usr/bin/host
|
||||
usr/bin/nslookup
|
||||
usr/bin/nsupdate
|
||||
#usr/include/bind9
|
||||
#usr/include/bind9/check.h
|
||||
#usr/include/bind9/getaddresses.h
|
||||
#usr/include/bind9/version.h
|
||||
#usr/include/dns
|
||||
#usr/include/dns/acache.h
|
||||
#usr/include/dns/acl.h
|
||||
#usr/include/dns/adb.h
|
||||
#usr/include/dns/badcache.h
|
||||
#usr/include/dns/bit.h
|
||||
#usr/include/dns/byaddr.h
|
||||
#usr/include/dns/cache.h
|
||||
#usr/include/dns/callbacks.h
|
||||
#usr/include/dns/catz.h
|
||||
#usr/include/dns/cert.h
|
||||
#usr/include/dns/client.h
|
||||
#usr/include/dns/clientinfo.h
|
||||
#usr/include/dns/compress.h
|
||||
#usr/include/dns/db.h
|
||||
#usr/include/dns/dbiterator.h
|
||||
#usr/include/dns/dbtable.h
|
||||
#usr/include/dns/diff.h
|
||||
#usr/include/dns/dispatch.h
|
||||
#usr/include/dns/dlz.h
|
||||
#usr/include/dns/dlz_dlopen.h
|
||||
#usr/include/dns/dns64.h
|
||||
#usr/include/dns/dnssec.h
|
||||
#usr/include/dns/dnstap.h
|
||||
#usr/include/dns/ds.h
|
||||
#usr/include/dns/dsdigest.h
|
||||
#usr/include/dns/dyndb.h
|
||||
#usr/include/dns/ecdb.h
|
||||
#usr/include/dns/edns.h
|
||||
#usr/include/dns/enumclass.h
|
||||
#usr/include/dns/enumtype.h
|
||||
#usr/include/dns/events.h
|
||||
#usr/include/dns/fixedname.h
|
||||
#usr/include/dns/forward.h
|
||||
#usr/include/dns/geoip.h
|
||||
#usr/include/dns/ipkeylist.h
|
||||
#usr/include/dns/iptable.h
|
||||
#usr/include/dns/journal.h
|
||||
#usr/include/dns/keydata.h
|
||||
#usr/include/dns/keyflags.h
|
||||
#usr/include/dns/keytable.h
|
||||
#usr/include/dns/keyvalues.h
|
||||
#usr/include/dns/lib.h
|
||||
#usr/include/dns/log.h
|
||||
#usr/include/dns/lookup.h
|
||||
#usr/include/dns/master.h
|
||||
#usr/include/dns/masterdump.h
|
||||
#usr/include/dns/message.h
|
||||
#usr/include/dns/name.h
|
||||
#usr/include/dns/ncache.h
|
||||
#usr/include/dns/nsec.h
|
||||
#usr/include/dns/nsec3.h
|
||||
#usr/include/dns/nta.h
|
||||
#usr/include/dns/opcode.h
|
||||
#usr/include/dns/order.h
|
||||
#usr/include/dns/peer.h
|
||||
#usr/include/dns/portlist.h
|
||||
#usr/include/dns/private.h
|
||||
#usr/include/dns/rbt.h
|
||||
#usr/include/dns/rcode.h
|
||||
#usr/include/dns/rdata.h
|
||||
#usr/include/dns/rdataclass.h
|
||||
#usr/include/dns/rdatalist.h
|
||||
#usr/include/dns/rdataset.h
|
||||
#usr/include/dns/rdatasetiter.h
|
||||
#usr/include/dns/rdataslab.h
|
||||
#usr/include/dns/rdatastruct.h
|
||||
#usr/include/dns/rdatatype.h
|
||||
#usr/include/dns/request.h
|
||||
#usr/include/dns/resolver.h
|
||||
#usr/include/dns/result.h
|
||||
#usr/include/dns/rootns.h
|
||||
#usr/include/dns/rpz.h
|
||||
#usr/include/dns/rriterator.h
|
||||
#usr/include/dns/rrl.h
|
||||
#usr/include/dns/sdb.h
|
||||
#usr/include/dns/sdlz.h
|
||||
#usr/include/dns/secalg.h
|
||||
#usr/include/dns/secproto.h
|
||||
#usr/include/dns/soa.h
|
||||
#usr/include/dns/ssu.h
|
||||
#usr/include/dns/stats.h
|
||||
#usr/include/dns/tcpmsg.h
|
||||
#usr/include/dns/time.h
|
||||
#usr/include/dns/timer.h
|
||||
#usr/include/dns/tkey.h
|
||||
#usr/include/dns/tsec.h
|
||||
#usr/include/dns/tsig.h
|
||||
#usr/include/dns/ttl.h
|
||||
#usr/include/dns/types.h
|
||||
#usr/include/dns/update.h
|
||||
#usr/include/dns/validator.h
|
||||
#usr/include/dns/version.h
|
||||
#usr/include/dns/view.h
|
||||
#usr/include/dns/xfrin.h
|
||||
#usr/include/dns/zone.h
|
||||
#usr/include/dns/zonekey.h
|
||||
#usr/include/dns/zt.h
|
||||
#usr/include/dst
|
||||
#usr/include/dst/dst.h
|
||||
#usr/include/dst/gssapi.h
|
||||
#usr/include/dst/lib.h
|
||||
#usr/include/dst/result.h
|
||||
#usr/include/isc
|
||||
#usr/include/isc/aes.h
|
||||
#usr/include/isc/app.h
|
||||
#usr/include/isc/assertions.h
|
||||
#usr/include/isc/atomic.h
|
||||
#usr/include/isc/backtrace.h
|
||||
#usr/include/isc/base32.h
|
||||
#usr/include/isc/base64.h
|
||||
#usr/include/isc/bind9.h
|
||||
#usr/include/isc/boolean.h
|
||||
#usr/include/isc/buffer.h
|
||||
#usr/include/isc/bufferlist.h
|
||||
#usr/include/isc/commandline.h
|
||||
#usr/include/isc/condition.h
|
||||
#usr/include/isc/counter.h
|
||||
#usr/include/isc/crc64.h
|
||||
#usr/include/isc/deprecated.h
|
||||
#usr/include/isc/dir.h
|
||||
#usr/include/isc/entropy.h
|
||||
#usr/include/isc/errno.h
|
||||
#usr/include/isc/error.h
|
||||
#usr/include/isc/event.h
|
||||
#usr/include/isc/eventclass.h
|
||||
#usr/include/isc/file.h
|
||||
#usr/include/isc/formatcheck.h
|
||||
#usr/include/isc/fsaccess.h
|
||||
#usr/include/isc/hash.h
|
||||
#usr/include/isc/heap.h
|
||||
#usr/include/isc/hex.h
|
||||
#usr/include/isc/hmacmd5.h
|
||||
#usr/include/isc/hmacsha.h
|
||||
#usr/include/isc/ht.h
|
||||
#usr/include/isc/httpd.h
|
||||
#usr/include/isc/int.h
|
||||
#usr/include/isc/interfaceiter.h
|
||||
#usr/include/isc/iterated_hash.h
|
||||
#usr/include/isc/json.h
|
||||
#usr/include/isc/keyboard.h
|
||||
#usr/include/isc/lang.h
|
||||
#usr/include/isc/lex.h
|
||||
#usr/include/isc/lfsr.h
|
||||
#usr/include/isc/lib.h
|
||||
#usr/include/isc/likely.h
|
||||
#usr/include/isc/list.h
|
||||
#usr/include/isc/log.h
|
||||
#usr/include/isc/magic.h
|
||||
#usr/include/isc/md5.h
|
||||
#usr/include/isc/mem.h
|
||||
#usr/include/isc/meminfo.h
|
||||
#usr/include/isc/msgcat.h
|
||||
#usr/include/isc/msgs.h
|
||||
#usr/include/isc/mutex.h
|
||||
#usr/include/isc/mutexblock.h
|
||||
#usr/include/isc/net.h
|
||||
#usr/include/isc/netaddr.h
|
||||
#usr/include/isc/netdb.h
|
||||
#usr/include/isc/netscope.h
|
||||
#usr/include/isc/offset.h
|
||||
#usr/include/isc/once.h
|
||||
#usr/include/isc/ondestroy.h
|
||||
#usr/include/isc/os.h
|
||||
#usr/include/isc/parseint.h
|
||||
#usr/include/isc/platform.h
|
||||
#usr/include/isc/pool.h
|
||||
#usr/include/isc/portset.h
|
||||
#usr/include/isc/print.h
|
||||
#usr/include/isc/queue.h
|
||||
#usr/include/isc/quota.h
|
||||
#usr/include/isc/radix.h
|
||||
#usr/include/isc/random.h
|
||||
#usr/include/isc/ratelimiter.h
|
||||
#usr/include/isc/refcount.h
|
||||
#usr/include/isc/regex.h
|
||||
#usr/include/isc/region.h
|
||||
#usr/include/isc/resource.h
|
||||
#usr/include/isc/result.h
|
||||
#usr/include/isc/resultclass.h
|
||||
#usr/include/isc/rwlock.h
|
||||
#usr/include/isc/safe.h
|
||||
#usr/include/isc/serial.h
|
||||
#usr/include/isc/sha1.h
|
||||
#usr/include/isc/sha2.h
|
||||
#usr/include/isc/sockaddr.h
|
||||
#usr/include/isc/socket.h
|
||||
#usr/include/isc/stat.h
|
||||
#usr/include/isc/stats.h
|
||||
#usr/include/isc/stdio.h
|
||||
#usr/include/isc/stdlib.h
|
||||
#usr/include/isc/stdtime.h
|
||||
#usr/include/isc/strerror.h
|
||||
#usr/include/isc/string.h
|
||||
#usr/include/isc/symtab.h
|
||||
#usr/include/isc/syslog.h
|
||||
#usr/include/isc/task.h
|
||||
#usr/include/isc/taskpool.h
|
||||
#usr/include/isc/thread.h
|
||||
#usr/include/isc/time.h
|
||||
#usr/include/isc/timer.h
|
||||
#usr/include/isc/tm.h
|
||||
#usr/include/isc/types.h
|
||||
#usr/include/isc/util.h
|
||||
#usr/include/isc/version.h
|
||||
#usr/include/isc/xml.h
|
||||
#usr/include/isccc
|
||||
#usr/include/isccc/alist.h
|
||||
#usr/include/isccc/base64.h
|
||||
#usr/include/isccc/cc.h
|
||||
#usr/include/isccc/ccmsg.h
|
||||
#usr/include/isccc/events.h
|
||||
#usr/include/isccc/lib.h
|
||||
#usr/include/isccc/result.h
|
||||
#usr/include/isccc/sexpr.h
|
||||
#usr/include/isccc/symtab.h
|
||||
#usr/include/isccc/symtype.h
|
||||
#usr/include/isccc/types.h
|
||||
#usr/include/isccc/util.h
|
||||
#usr/include/isccc/version.h
|
||||
#usr/include/isccfg
|
||||
#usr/include/isccfg/aclconf.h
|
||||
#usr/include/isccfg/cfg.h
|
||||
#usr/include/isccfg/dnsconf.h
|
||||
#usr/include/isccfg/grammar.h
|
||||
#usr/include/isccfg/log.h
|
||||
#usr/include/isccfg/namedconf.h
|
||||
#usr/include/isccfg/version.h
|
||||
#usr/include/lwres
|
||||
#usr/include/lwres/context.h
|
||||
#usr/include/lwres/int.h
|
||||
#usr/include/lwres/ipv6.h
|
||||
#usr/include/lwres/lang.h
|
||||
#usr/include/lwres/list.h
|
||||
#usr/include/lwres/lwbuffer.h
|
||||
#usr/include/lwres/lwpacket.h
|
||||
#usr/include/lwres/lwres.h
|
||||
#usr/include/lwres/net.h
|
||||
#usr/include/lwres/netdb.h
|
||||
#usr/include/lwres/platform.h
|
||||
#usr/include/lwres/result.h
|
||||
#usr/include/lwres/stdlib.h
|
||||
#usr/include/lwres/string.h
|
||||
#usr/include/lwres/version.h
|
||||
#usr/include/pk11
|
||||
#usr/include/pk11/constants.h
|
||||
#usr/include/pk11/internal.h
|
||||
#usr/include/pk11/pk11.h
|
||||
#usr/include/pk11/result.h
|
||||
#usr/include/pk11/site.h
|
||||
#usr/include/pkcs11
|
||||
#usr/include/pkcs11/cryptoki.h
|
||||
#usr/include/pkcs11/eddsa.h
|
||||
#usr/include/pkcs11/pkcs11.h
|
||||
#usr/include/pkcs11/pkcs11f.h
|
||||
#usr/include/pkcs11/pkcs11t.h
|
||||
#usr/lib/libbind9.la
|
||||
#usr/lib/libbind9.so
|
||||
usr/lib/libbind9.so.161
|
||||
usr/lib/libbind9.so.161.0.0
|
||||
#usr/lib/libdns.la
|
||||
#usr/lib/libdns.so
|
||||
usr/lib/libdns.so.1104
|
||||
usr/lib/libdns.so.1104.0.0
|
||||
#usr/lib/libisc.la
|
||||
#usr/lib/libisc.so
|
||||
usr/lib/libisc.so.1100
|
||||
usr/lib/libisc.so.1100.0.0
|
||||
#usr/lib/libisccc.la
|
||||
#usr/lib/libisccc.so
|
||||
usr/lib/libisccc.so.161
|
||||
usr/lib/libisccc.so.161.0.0
|
||||
#usr/lib/libisccfg.la
|
||||
#usr/lib/libisccfg.so
|
||||
usr/lib/libisccfg.so.163
|
||||
usr/lib/libisccfg.so.163.0.0
|
||||
#usr/lib/liblwres.la
|
||||
#usr/lib/liblwres.so
|
||||
usr/lib/liblwres.so.161
|
||||
usr/lib/liblwres.so.161.0.0
|
||||
#usr/share/man/man1/dig.1
|
||||
#usr/share/man/man1/host.1
|
||||
#usr/share/man/man1/nslookup.1
|
||||
#usr/share/man/man1/nsupdate.1
|
||||
#usr/share/man/man3/lwres.3
|
||||
#usr/share/man/man3/lwres_addr_parse.3
|
||||
#usr/share/man/man3/lwres_buffer.3
|
||||
#usr/share/man/man3/lwres_buffer_add.3
|
||||
#usr/share/man/man3/lwres_buffer_back.3
|
||||
#usr/share/man/man3/lwres_buffer_clear.3
|
||||
#usr/share/man/man3/lwres_buffer_first.3
|
||||
#usr/share/man/man3/lwres_buffer_forward.3
|
||||
#usr/share/man/man3/lwres_buffer_getmem.3
|
||||
#usr/share/man/man3/lwres_buffer_getuint16.3
|
||||
#usr/share/man/man3/lwres_buffer_getuint32.3
|
||||
#usr/share/man/man3/lwres_buffer_getuint8.3
|
||||
#usr/share/man/man3/lwres_buffer_init.3
|
||||
#usr/share/man/man3/lwres_buffer_invalidate.3
|
||||
#usr/share/man/man3/lwres_buffer_putmem.3
|
||||
#usr/share/man/man3/lwres_buffer_putuint16.3
|
||||
#usr/share/man/man3/lwres_buffer_putuint32.3
|
||||
#usr/share/man/man3/lwres_buffer_putuint8.3
|
||||
#usr/share/man/man3/lwres_buffer_subtract.3
|
||||
#usr/share/man/man3/lwres_conf_clear.3
|
||||
#usr/share/man/man3/lwres_conf_get.3
|
||||
#usr/share/man/man3/lwres_conf_init.3
|
||||
#usr/share/man/man3/lwres_conf_parse.3
|
||||
#usr/share/man/man3/lwres_conf_print.3
|
||||
#usr/share/man/man3/lwres_config.3
|
||||
#usr/share/man/man3/lwres_context.3
|
||||
#usr/share/man/man3/lwres_context_allocmem.3
|
||||
#usr/share/man/man3/lwres_context_create.3
|
||||
#usr/share/man/man3/lwres_context_destroy.3
|
||||
#usr/share/man/man3/lwres_context_freemem.3
|
||||
#usr/share/man/man3/lwres_context_initserial.3
|
||||
#usr/share/man/man3/lwres_context_nextserial.3
|
||||
#usr/share/man/man3/lwres_context_sendrecv.3
|
||||
#usr/share/man/man3/lwres_endhostent.3
|
||||
#usr/share/man/man3/lwres_endhostent_r.3
|
||||
#usr/share/man/man3/lwres_freeaddrinfo.3
|
||||
#usr/share/man/man3/lwres_freehostent.3
|
||||
#usr/share/man/man3/lwres_gabn.3
|
||||
#usr/share/man/man3/lwres_gabnrequest_free.3
|
||||
#usr/share/man/man3/lwres_gabnrequest_parse.3
|
||||
#usr/share/man/man3/lwres_gabnrequest_render.3
|
||||
#usr/share/man/man3/lwres_gabnresponse_free.3
|
||||
#usr/share/man/man3/lwres_gabnresponse_parse.3
|
||||
#usr/share/man/man3/lwres_gabnresponse_render.3
|
||||
#usr/share/man/man3/lwres_gai_strerror.3
|
||||
#usr/share/man/man3/lwres_getaddrinfo.3
|
||||
#usr/share/man/man3/lwres_getaddrsbyname.3
|
||||
#usr/share/man/man3/lwres_gethostbyaddr.3
|
||||
#usr/share/man/man3/lwres_gethostbyaddr_r.3
|
||||
#usr/share/man/man3/lwres_gethostbyname.3
|
||||
#usr/share/man/man3/lwres_gethostbyname2.3
|
||||
#usr/share/man/man3/lwres_gethostbyname_r.3
|
||||
#usr/share/man/man3/lwres_gethostent.3
|
||||
#usr/share/man/man3/lwres_gethostent_r.3
|
||||
#usr/share/man/man3/lwres_getipnode.3
|
||||
#usr/share/man/man3/lwres_getipnodebyaddr.3
|
||||
#usr/share/man/man3/lwres_getipnodebyname.3
|
||||
#usr/share/man/man3/lwres_getnamebyaddr.3
|
||||
#usr/share/man/man3/lwres_getnameinfo.3
|
||||
#usr/share/man/man3/lwres_getrrsetbyname.3
|
||||
#usr/share/man/man3/lwres_gnba.3
|
||||
#usr/share/man/man3/lwres_gnbarequest_free.3
|
||||
#usr/share/man/man3/lwres_gnbarequest_parse.3
|
||||
#usr/share/man/man3/lwres_gnbarequest_render.3
|
||||
#usr/share/man/man3/lwres_gnbaresponse_free.3
|
||||
#usr/share/man/man3/lwres_gnbaresponse_parse.3
|
||||
#usr/share/man/man3/lwres_gnbaresponse_render.3
|
||||
#usr/share/man/man3/lwres_herror.3
|
||||
#usr/share/man/man3/lwres_hstrerror.3
|
||||
#usr/share/man/man3/lwres_inetntop.3
|
||||
#usr/share/man/man3/lwres_lwpacket_parseheader.3
|
||||
#usr/share/man/man3/lwres_lwpacket_renderheader.3
|
||||
#usr/share/man/man3/lwres_net_ntop.3
|
||||
#usr/share/man/man3/lwres_noop.3
|
||||
#usr/share/man/man3/lwres_nooprequest_free.3
|
||||
#usr/share/man/man3/lwres_nooprequest_parse.3
|
||||
#usr/share/man/man3/lwres_nooprequest_render.3
|
||||
#usr/share/man/man3/lwres_noopresponse_free.3
|
||||
#usr/share/man/man3/lwres_noopresponse_parse.3
|
||||
#usr/share/man/man3/lwres_noopresponse_render.3
|
||||
#usr/share/man/man3/lwres_packet.3
|
||||
#usr/share/man/man3/lwres_resutil.3
|
||||
#usr/share/man/man3/lwres_sethostent.3
|
||||
#usr/share/man/man3/lwres_sethostent_r.3
|
||||
#usr/share/man/man3/lwres_string_parse.3
|
||||
|
||||
@@ -51,6 +51,8 @@
|
||||
#usr/share/locale/ast
|
||||
#usr/share/locale/ast/LC_MESSAGES
|
||||
#usr/share/locale/ast/LC_MESSAGES/bison-runtime.mo
|
||||
#usr/share/locale/ca/LC_MESSAGES/bison-runtime.mo
|
||||
#usr/share/locale/ca/LC_MESSAGES/bison.mo
|
||||
#usr/share/locale/da/LC_MESSAGES/bison-runtime.mo
|
||||
#usr/share/locale/da/LC_MESSAGES/bison.mo
|
||||
#usr/share/locale/de/LC_MESSAGES/bison-runtime.mo
|
||||
|
||||
@@ -125,8 +125,6 @@ var/ipfire/modem-lib.pl
|
||||
#var/ipfire/modem/settings
|
||||
var/ipfire/modem-lib.pl
|
||||
var/ipfire/network-functions.pl
|
||||
#var/ipfire/nfs
|
||||
#var/ipfire/nfs/nfs-server
|
||||
var/ipfire/optionsfw
|
||||
#var/ipfire/optionsfw/settings
|
||||
var/ipfire/ovpn
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#etc/mke2fs.conf
|
||||
#etc/mke2fs.conf.e2fsprogs-new
|
||||
lib/libblkid.so.1
|
||||
lib/libblkid.so.1.0
|
||||
lib/libcom_err.so.2
|
||||
@@ -19,19 +18,18 @@ sbin/dumpe2fs
|
||||
sbin/e2fsck
|
||||
sbin/e2image
|
||||
sbin/e2label
|
||||
sbin/e2mmpstatus
|
||||
sbin/e2undo
|
||||
sbin/findfs
|
||||
sbin/fsck
|
||||
sbin/fsck.ext2
|
||||
sbin/fsck.ext3
|
||||
sbin/fsck.ext4
|
||||
sbin/fsck.ext4dev
|
||||
#sbin/logsave
|
||||
sbin/mke2fs
|
||||
sbin/mkfs.ext2
|
||||
sbin/mkfs.ext3
|
||||
sbin/mkfs.ext4
|
||||
sbin/mkfs.ext4dev
|
||||
sbin/resize2fs
|
||||
sbin/tune2fs
|
||||
usr/bin/chattr
|
||||
@@ -56,10 +54,9 @@ usr/bin/uuidgen
|
||||
#usr/include/ext2fs/ext2_types.h
|
||||
#usr/include/ext2fs/ext2fs.h
|
||||
#usr/include/ext2fs/ext3_extents.h
|
||||
#usr/include/ext2fs/hashmap.h
|
||||
#usr/include/ext2fs/qcow2.h
|
||||
#usr/include/ext2fs/tdb.h
|
||||
#usr/include/quota
|
||||
#usr/include/quota/mkquota.h
|
||||
#usr/include/ss
|
||||
#usr/include/ss/ss.h
|
||||
#usr/include/ss/ss_err.h
|
||||
@@ -74,7 +71,6 @@ usr/lib/libcom_err.so
|
||||
usr/lib/libe2p.so
|
||||
#usr/lib/libext2fs.a
|
||||
usr/lib/libext2fs.so
|
||||
#usr/lib/libquota.a
|
||||
#usr/lib/libss.a
|
||||
usr/lib/libss.so
|
||||
#usr/lib/libuuid.a
|
||||
@@ -83,10 +79,10 @@ usr/lib/libuuid.so
|
||||
#usr/lib/pkgconfig/com_err.pc
|
||||
#usr/lib/pkgconfig/e2p.pc
|
||||
#usr/lib/pkgconfig/ext2fs.pc
|
||||
#usr/lib/pkgconfig/quota.pc
|
||||
#usr/lib/pkgconfig/ss.pc
|
||||
#usr/lib/pkgconfig/uuid.pc
|
||||
usr/sbin/e2freefrag
|
||||
usr/sbin/e4crypt
|
||||
usr/sbin/e4defrag
|
||||
usr/sbin/filefrag
|
||||
usr/sbin/mklost+found
|
||||
@@ -114,10 +110,10 @@ usr/sbin/uuidd
|
||||
#usr/share/man/man3/uuid_time.3
|
||||
#usr/share/man/man3/uuid_unparse.3
|
||||
#usr/share/man/man5/e2fsck.conf.5
|
||||
#usr/share/man/man5/mke2fs.conf.5
|
||||
#usr/share/man/man5/ext2.5
|
||||
#usr/share/man/man5/ext3.5
|
||||
#usr/share/man/man5/ext4.5
|
||||
#usr/share/man/man5/mke2fs.conf.5
|
||||
#usr/share/man/man8/badblocks.8
|
||||
#usr/share/man/man8/blkid.8
|
||||
#usr/share/man/man8/debugfs.8
|
||||
@@ -126,7 +122,9 @@ usr/sbin/uuidd
|
||||
#usr/share/man/man8/e2fsck.8
|
||||
#usr/share/man/man8/e2image.8
|
||||
#usr/share/man/man8/e2label.8
|
||||
#usr/share/man/man8/e2mmpstatus.8
|
||||
#usr/share/man/man8/e2undo.8
|
||||
#usr/share/man/man8/e4crypt.8
|
||||
#usr/share/man/man8/e4defrag.8
|
||||
#usr/share/man/man8/filefrag.8
|
||||
#usr/share/man/man8/findfs.8
|
||||
@@ -134,13 +132,11 @@ usr/sbin/uuidd
|
||||
#usr/share/man/man8/fsck.ext2.8
|
||||
#usr/share/man/man8/fsck.ext3.8
|
||||
#usr/share/man/man8/fsck.ext4.8
|
||||
#usr/share/man/man8/fsck.ext4dev.8
|
||||
#usr/share/man/man8/logsave.8
|
||||
#usr/share/man/man8/mke2fs.8
|
||||
#usr/share/man/man8/mkfs.ext2.8
|
||||
#usr/share/man/man8/mkfs.ext3.8
|
||||
#usr/share/man/man8/mkfs.ext4.8
|
||||
#usr/share/man/man8/mkfs.ext4dev.8
|
||||
#usr/share/man/man8/mklost+found.8
|
||||
#usr/share/man/man8/resize2fs.8
|
||||
#usr/share/man/man8/tune2fs.8
|
||||
|
||||
@@ -33,7 +33,7 @@ usr/lib/libgnutls-dane.so.0.4.1
|
||||
#usr/lib/libgnutls.la
|
||||
#usr/lib/libgnutls.so
|
||||
usr/lib/libgnutls.so.30
|
||||
usr/lib/libgnutls.so.30.14.7
|
||||
usr/lib/libgnutls.so.30.14.11
|
||||
#usr/lib/libgnutlsxx.la
|
||||
#usr/lib/libgnutlsxx.so
|
||||
usr/lib/libgnutlsxx.so.28
|
||||
|
||||
@@ -1,49 +1,47 @@
|
||||
#etc/ld.so.cache
|
||||
etc/rpc
|
||||
lib/ld-2.27.so
|
||||
lib/ld-2.28.so
|
||||
lib/ld-linux.so.2
|
||||
lib/libBrokenLocale-2.27.so
|
||||
lib/libBrokenLocale-2.28.so
|
||||
lib/libBrokenLocale.so.1
|
||||
#lib/libSegFault.so
|
||||
lib/libanl-2.27.so
|
||||
lib/libanl-2.28.so
|
||||
lib/libanl.so.1
|
||||
lib/libc-2.27.so
|
||||
lib/libc-2.28.so
|
||||
lib/libc.so.6
|
||||
lib/libcidn-2.27.so
|
||||
lib/libcidn.so.1
|
||||
lib/libcrypt-2.27.so
|
||||
lib/libcrypt-2.28.so
|
||||
lib/libcrypt.so.1
|
||||
lib/libdl-2.27.so
|
||||
lib/libdl-2.28.so
|
||||
lib/libdl.so.2
|
||||
lib/libm-2.27.so
|
||||
lib/libm-2.28.so
|
||||
lib/libm.so.6
|
||||
#lib/libmemusage.so
|
||||
lib/libnsl-2.27.so
|
||||
lib/libnsl-2.28.so
|
||||
lib/libnsl.so.1
|
||||
lib/libnss_compat-2.27.so
|
||||
lib/libnss_compat-2.28.so
|
||||
lib/libnss_compat.so.2
|
||||
lib/libnss_db-2.27.so
|
||||
lib/libnss_db-2.28.so
|
||||
lib/libnss_db.so.2
|
||||
lib/libnss_dns-2.27.so
|
||||
lib/libnss_dns-2.28.so
|
||||
lib/libnss_dns.so.2
|
||||
lib/libnss_files-2.27.so
|
||||
lib/libnss_files-2.28.so
|
||||
lib/libnss_files.so.2
|
||||
lib/libnss_hesiod-2.27.so
|
||||
lib/libnss_hesiod-2.28.so
|
||||
lib/libnss_hesiod.so.2
|
||||
lib/libnss_nis-2.27.so
|
||||
lib/libnss_nis-2.28.so
|
||||
lib/libnss_nis.so.2
|
||||
lib/libnss_nisplus-2.27.so
|
||||
lib/libnss_nisplus-2.28.so
|
||||
lib/libnss_nisplus.so.2
|
||||
#lib/libpcprofile.so
|
||||
lib/libpthread-2.27.so
|
||||
lib/libpthread-2.28.so
|
||||
lib/libpthread.so.0
|
||||
lib/libresolv-2.27.so
|
||||
lib/libresolv-2.28.so
|
||||
lib/libresolv.so.2
|
||||
lib/librt-2.27.so
|
||||
lib/librt-2.28.so
|
||||
lib/librt.so.1
|
||||
lib/libthread_db-1.0.so
|
||||
lib/libthread_db.so.1
|
||||
lib/libutil-2.27.so
|
||||
lib/libutil-2.28.so
|
||||
lib/libutil.so.1
|
||||
sbin/ldconfig
|
||||
#sbin/sln
|
||||
@@ -65,7 +63,6 @@ usr/bin/locale
|
||||
#usr/bin/sprof
|
||||
#usr/bin/tzselect
|
||||
#usr/bin/xtrace
|
||||
#usr/include/_G_config.h
|
||||
#usr/include/a.out.h
|
||||
#usr/include/aio.h
|
||||
#usr/include/aliases.h
|
||||
@@ -82,9 +79,7 @@ usr/bin/locale
|
||||
#usr/include/arpa/tftp.h
|
||||
#usr/include/assert.h
|
||||
#usr/include/bits
|
||||
#usr/include/bits/_G_config.h
|
||||
#usr/include/bits/a.out.h
|
||||
#usr/include/bits/byteswap-16.h
|
||||
#usr/include/bits/byteswap.h
|
||||
#usr/include/bits/cmathcalls.h
|
||||
#usr/include/bits/confname.h
|
||||
@@ -113,6 +108,7 @@ usr/bin/locale
|
||||
#usr/include/bits/getopt_posix.h
|
||||
#usr/include/bits/hwcap.h
|
||||
#usr/include/bits/in.h
|
||||
#usr/include/bits/indirect-return.h
|
||||
#usr/include/bits/initspin.h
|
||||
#usr/include/bits/inotify.h
|
||||
#usr/include/bits/ioctl-types.h
|
||||
@@ -121,8 +117,6 @@ usr/bin/locale
|
||||
#usr/include/bits/ipctypes.h
|
||||
#usr/include/bits/iscanonical.h
|
||||
#usr/include/bits/libc-header-start.h
|
||||
#usr/include/bits/libio-ldbl.h
|
||||
#usr/include/bits/libio.h
|
||||
#usr/include/bits/libm-simd-decl-stubs.h
|
||||
#usr/include/bits/link.h
|
||||
#usr/include/bits/local_lim.h
|
||||
@@ -131,6 +125,7 @@ usr/bin/locale
|
||||
#usr/include/bits/math-finite.h
|
||||
#usr/include/bits/math-vector.h
|
||||
#usr/include/bits/mathcalls-helper-functions.h
|
||||
#usr/include/bits/mathcalls-narrow.h
|
||||
#usr/include/bits/mathcalls.h
|
||||
#usr/include/bits/mathdef.h
|
||||
#usr/include/bits/mathinline.h
|
||||
@@ -181,6 +176,7 @@ usr/bin/locale
|
||||
#usr/include/bits/stat.h
|
||||
#usr/include/bits/statfs.h
|
||||
#usr/include/bits/statvfs.h
|
||||
#usr/include/bits/statx.h
|
||||
#usr/include/bits/stdint-intn.h
|
||||
#usr/include/bits/stdint-uintn.h
|
||||
#usr/include/bits/stdio-ldbl.h
|
||||
@@ -210,12 +206,16 @@ usr/bin/locale
|
||||
#usr/include/bits/types.h
|
||||
#usr/include/bits/types/FILE.h
|
||||
#usr/include/bits/types/__FILE.h
|
||||
#usr/include/bits/types/__fpos64_t.h
|
||||
#usr/include/bits/types/__fpos_t.h
|
||||
#usr/include/bits/types/__locale_t.h
|
||||
#usr/include/bits/types/__mbstate_t.h
|
||||
#usr/include/bits/types/__sigset_t.h
|
||||
#usr/include/bits/types/__sigval_t.h
|
||||
#usr/include/bits/types/clock_t.h
|
||||
#usr/include/bits/types/clockid_t.h
|
||||
#usr/include/bits/types/cookie_io_functions_t.h
|
||||
#usr/include/bits/types/error_t.h
|
||||
#usr/include/bits/types/locale_t.h
|
||||
#usr/include/bits/types/mbstate_t.h
|
||||
#usr/include/bits/types/res_state.h
|
||||
@@ -225,10 +225,12 @@ usr/bin/locale
|
||||
#usr/include/bits/types/sigset_t.h
|
||||
#usr/include/bits/types/sigval_t.h
|
||||
#usr/include/bits/types/stack_t.h
|
||||
#usr/include/bits/types/struct_FILE.h
|
||||
#usr/include/bits/types/struct_iovec.h
|
||||
#usr/include/bits/types/struct_itimerspec.h
|
||||
#usr/include/bits/types/struct_osockaddr.h
|
||||
#usr/include/bits/types/struct_rusage.h
|
||||
#usr/include/bits/types/struct_sched_param.h
|
||||
#usr/include/bits/types/struct_sigstack.h
|
||||
#usr/include/bits/types/struct_timespec.h
|
||||
#usr/include/bits/types/struct_timeval.h
|
||||
@@ -241,7 +243,6 @@ usr/bin/locale
|
||||
#usr/include/bits/uio-ext.h
|
||||
#usr/include/bits/uio_lim.h
|
||||
#usr/include/bits/unistd.h
|
||||
#usr/include/bits/ustat.h
|
||||
#usr/include/bits/utmp.h
|
||||
#usr/include/bits/utmpx.h
|
||||
#usr/include/bits/utsname.h
|
||||
@@ -297,7 +298,6 @@ usr/bin/locale
|
||||
#usr/include/lastlog.h
|
||||
#usr/include/libgen.h
|
||||
#usr/include/libintl.h
|
||||
#usr/include/libio.h
|
||||
#usr/include/limits.h
|
||||
#usr/include/link.h
|
||||
#usr/include/locale.h
|
||||
@@ -378,14 +378,12 @@ usr/bin/locale
|
||||
#usr/include/rpc/auth_des.h
|
||||
#usr/include/rpc/auth_unix.h
|
||||
#usr/include/rpc/clnt.h
|
||||
#usr/include/rpc/des_crypt.h
|
||||
#usr/include/rpc/key_prot.h
|
||||
#usr/include/rpc/netdb.h
|
||||
#usr/include/rpc/pmap_clnt.h
|
||||
#usr/include/rpc/pmap_prot.h
|
||||
#usr/include/rpc/pmap_rmt.h
|
||||
#usr/include/rpc/rpc.h
|
||||
#usr/include/rpc/rpc_des.h
|
||||
#usr/include/rpc/rpc_msg.h
|
||||
#usr/include/rpc/svc.h
|
||||
#usr/include/rpc/svc_auth.h
|
||||
@@ -527,7 +525,6 @@ usr/bin/locale
|
||||
#usr/include/sys/un.h
|
||||
#usr/include/sys/unistd.h
|
||||
#usr/include/sys/user.h
|
||||
#usr/include/sys/ustat.h
|
||||
#usr/include/sys/utsname.h
|
||||
#usr/include/sys/vfs.h
|
||||
#usr/include/sys/vlimit.h
|
||||
@@ -544,13 +541,13 @@ usr/bin/locale
|
||||
#usr/include/termios.h
|
||||
#usr/include/tgmath.h
|
||||
#usr/include/thread_db.h
|
||||
#usr/include/threads.h
|
||||
#usr/include/time.h
|
||||
#usr/include/ttyent.h
|
||||
#usr/include/uchar.h
|
||||
#usr/include/ucontext.h
|
||||
#usr/include/ulimit.h
|
||||
#usr/include/unistd.h
|
||||
#usr/include/ustat.h
|
||||
#usr/include/utime.h
|
||||
#usr/include/utmp.h
|
||||
#usr/include/utmpx.h
|
||||
@@ -837,7 +834,6 @@ usr/lib/gconv
|
||||
#usr/lib/libc.a
|
||||
#usr/lib/libc.so
|
||||
#usr/lib/libc_nonshared.a
|
||||
#usr/lib/libcidn.so
|
||||
#usr/lib/libcrypt.a
|
||||
#usr/lib/libcrypt.so
|
||||
#usr/lib/libdl.a
|
||||
@@ -857,7 +853,6 @@ usr/lib/gconv
|
||||
#usr/lib/libnss_nisplus.so
|
||||
#usr/lib/libpthread.a
|
||||
#usr/lib/libpthread.so
|
||||
#usr/lib/libpthread_nonshared.a
|
||||
#usr/lib/libresolv.a
|
||||
#usr/lib/libresolv.so
|
||||
#usr/lib/librpcsvc.a
|
||||
@@ -2519,6 +2514,20 @@ usr/lib/locale
|
||||
#usr/lib/locale/doi_IN/LC_PAPER
|
||||
#usr/lib/locale/doi_IN/LC_TELEPHONE
|
||||
#usr/lib/locale/doi_IN/LC_TIME
|
||||
#usr/lib/locale/dsb_DE
|
||||
#usr/lib/locale/dsb_DE/LC_ADDRESS
|
||||
#usr/lib/locale/dsb_DE/LC_COLLATE
|
||||
#usr/lib/locale/dsb_DE/LC_CTYPE
|
||||
#usr/lib/locale/dsb_DE/LC_IDENTIFICATION
|
||||
#usr/lib/locale/dsb_DE/LC_MEASUREMENT
|
||||
#usr/lib/locale/dsb_DE/LC_MESSAGES
|
||||
#usr/lib/locale/dsb_DE/LC_MESSAGES/SYS_LC_MESSAGES
|
||||
#usr/lib/locale/dsb_DE/LC_MONETARY
|
||||
#usr/lib/locale/dsb_DE/LC_NAME
|
||||
#usr/lib/locale/dsb_DE/LC_NUMERIC
|
||||
#usr/lib/locale/dsb_DE/LC_PAPER
|
||||
#usr/lib/locale/dsb_DE/LC_TELEPHONE
|
||||
#usr/lib/locale/dsb_DE/LC_TIME
|
||||
#usr/lib/locale/dv_MV
|
||||
#usr/lib/locale/dv_MV/LC_ADDRESS
|
||||
#usr/lib/locale/dv_MV/LC_COLLATE
|
||||
@@ -6215,6 +6224,20 @@ usr/lib/locale
|
||||
#usr/lib/locale/sa_IN/LC_PAPER
|
||||
#usr/lib/locale/sa_IN/LC_TELEPHONE
|
||||
#usr/lib/locale/sa_IN/LC_TIME
|
||||
#usr/lib/locale/sah_RU
|
||||
#usr/lib/locale/sah_RU/LC_ADDRESS
|
||||
#usr/lib/locale/sah_RU/LC_COLLATE
|
||||
#usr/lib/locale/sah_RU/LC_CTYPE
|
||||
#usr/lib/locale/sah_RU/LC_IDENTIFICATION
|
||||
#usr/lib/locale/sah_RU/LC_MEASUREMENT
|
||||
#usr/lib/locale/sah_RU/LC_MESSAGES
|
||||
#usr/lib/locale/sah_RU/LC_MESSAGES/SYS_LC_MESSAGES
|
||||
#usr/lib/locale/sah_RU/LC_MONETARY
|
||||
#usr/lib/locale/sah_RU/LC_NAME
|
||||
#usr/lib/locale/sah_RU/LC_NUMERIC
|
||||
#usr/lib/locale/sah_RU/LC_PAPER
|
||||
#usr/lib/locale/sah_RU/LC_TELEPHONE
|
||||
#usr/lib/locale/sah_RU/LC_TIME
|
||||
#usr/lib/locale/sat_IN
|
||||
#usr/lib/locale/sat_IN/LC_ADDRESS
|
||||
#usr/lib/locale/sat_IN/LC_COLLATE
|
||||
@@ -7965,6 +7988,7 @@ usr/lib/locale
|
||||
#usr/share/i18n/locales/de_LU
|
||||
#usr/share/i18n/locales/de_LU@euro
|
||||
#usr/share/i18n/locales/doi_IN
|
||||
#usr/share/i18n/locales/dsb_DE
|
||||
#usr/share/i18n/locales/dv_MV
|
||||
#usr/share/i18n/locales/dz_BT
|
||||
#usr/share/i18n/locales/el_CY
|
||||
@@ -8148,6 +8172,7 @@ usr/lib/locale
|
||||
#usr/share/i18n/locales/ru_UA
|
||||
#usr/share/i18n/locales/rw_RW
|
||||
#usr/share/i18n/locales/sa_IN
|
||||
#usr/share/i18n/locales/sah_RU
|
||||
#usr/share/i18n/locales/sat_IN
|
||||
#usr/share/i18n/locales/sc_IT
|
||||
#usr/share/i18n/locales/sd_IN
|
||||
|
||||
@@ -183,10 +183,10 @@ etc/rc.d/rcsysinit.d/S45udev_retry
|
||||
etc/rc.d/rcsysinit.d/S50cleanfs
|
||||
etc/rc.d/rcsysinit.d/S60setclock
|
||||
etc/rc.d/rcsysinit.d/S70console
|
||||
etc/rc.d/rcsysinit.d/S71pakfire
|
||||
etc/rc.d/rcsysinit.d/S74aws
|
||||
etc/rc.d/rcsysinit.d/S75firstsetup
|
||||
etc/rc.d/rcsysinit.d/S80localnet
|
||||
etc/rc.d/rcsysinit.d/S81pakfire
|
||||
etc/rc.d/rcsysinit.d/S85firewall
|
||||
etc/rc.d/rcsysinit.d/S92rngd
|
||||
#etc/sysconfig
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
21
config/rootfiles/common/json-c
Normal file
21
config/rootfiles/common/json-c
Normal file
@@ -0,0 +1,21 @@
|
||||
#usr/include/json-c
|
||||
#usr/include/json-c/arraylist.h
|
||||
#usr/include/json-c/bits.h
|
||||
#usr/include/json-c/debug.h
|
||||
#usr/include/json-c/json.h
|
||||
#usr/include/json-c/json_c_version.h
|
||||
#usr/include/json-c/json_config.h
|
||||
#usr/include/json-c/json_inttypes.h
|
||||
#usr/include/json-c/json_object.h
|
||||
#usr/include/json-c/json_object_iterator.h
|
||||
#usr/include/json-c/json_pointer.h
|
||||
#usr/include/json-c/json_tokener.h
|
||||
#usr/include/json-c/json_util.h
|
||||
#usr/include/json-c/json_visit.h
|
||||
#usr/include/json-c/linkhash.h
|
||||
#usr/include/json-c/printbuf.h
|
||||
#usr/lib/libjson-c.la
|
||||
#usr/lib/libjson-c.so
|
||||
usr/lib/libjson-c.so.4
|
||||
usr/lib/libjson-c.so.4.0.0
|
||||
#usr/lib/pkgconfig/json-c.pc
|
||||
50
config/rootfiles/common/keyutils
Normal file
50
config/rootfiles/common/keyutils
Normal file
@@ -0,0 +1,50 @@
|
||||
bin/keyctl
|
||||
etc/request-key.conf
|
||||
etc/request-key.d
|
||||
#lib/libkeyutils.so
|
||||
lib/libkeyutils.so.1
|
||||
lib/libkeyutils.so.1.7
|
||||
sbin/key.dns_resolver
|
||||
sbin/request-key
|
||||
#usr/include/keyutils.h
|
||||
#usr/share/keyutils
|
||||
#usr/share/keyutils/request-key-debug.sh
|
||||
#usr/share/man/man1/keyctl.1
|
||||
#usr/share/man/man3/find_key_by_type_and_name.3
|
||||
#usr/share/man/man3/keyctl.3
|
||||
#usr/share/man/man3/keyctl_assume_authority.3
|
||||
#usr/share/man/man3/keyctl_chown.3
|
||||
#usr/share/man/man3/keyctl_clear.3
|
||||
#usr/share/man/man3/keyctl_describe.3
|
||||
#usr/share/man/man3/keyctl_describe_alloc.3
|
||||
#usr/share/man/man3/keyctl_dh_compute.3
|
||||
#usr/share/man/man3/keyctl_dh_compute_alloc.3
|
||||
#usr/share/man/man3/keyctl_dh_compute_kdf.3
|
||||
#usr/share/man/man3/keyctl_get_keyring_ID.3
|
||||
#usr/share/man/man3/keyctl_get_persistent.3
|
||||
#usr/share/man/man3/keyctl_get_security.3
|
||||
#usr/share/man/man3/keyctl_get_security_alloc.3
|
||||
#usr/share/man/man3/keyctl_instantiate.3
|
||||
#usr/share/man/man3/keyctl_instantiate_iov.3
|
||||
#usr/share/man/man3/keyctl_invalidate.3
|
||||
#usr/share/man/man3/keyctl_join_session_keyring.3
|
||||
#usr/share/man/man3/keyctl_link.3
|
||||
#usr/share/man/man3/keyctl_negate.3
|
||||
#usr/share/man/man3/keyctl_read.3
|
||||
#usr/share/man/man3/keyctl_read_alloc.3
|
||||
#usr/share/man/man3/keyctl_reject.3
|
||||
#usr/share/man/man3/keyctl_restrict_keyring.3
|
||||
#usr/share/man/man3/keyctl_revoke.3
|
||||
#usr/share/man/man3/keyctl_search.3
|
||||
#usr/share/man/man3/keyctl_session_to_parent.3
|
||||
#usr/share/man/man3/keyctl_set_reqkey_keyring.3
|
||||
#usr/share/man/man3/keyctl_set_timeout.3
|
||||
#usr/share/man/man3/keyctl_setperm.3
|
||||
#usr/share/man/man3/keyctl_unlink.3
|
||||
#usr/share/man/man3/keyctl_update.3
|
||||
#usr/share/man/man3/recursive_key_scan.3
|
||||
#usr/share/man/man3/recursive_session_key_scan.3
|
||||
#usr/share/man/man5/request-key.conf.5
|
||||
#usr/share/man/man7/keyutils.7
|
||||
#usr/share/man/man8/key.dns_resolver.8
|
||||
#usr/share/man/man8/request-key.8
|
||||
@@ -7,7 +7,8 @@ sbin/modprobe
|
||||
sbin/rmmod
|
||||
#usr/include/libkmod.h
|
||||
#usr/lib/libkmod.la
|
||||
usr/lib/libkmod.so
|
||||
#usr/lib/libkmod.so
|
||||
usr/lib/libkmod.so.2
|
||||
usr/lib/libkmod.so.2.2.3
|
||||
usr/lib/libkmod.so.2.3.3
|
||||
#usr/lib/pkgconfig/libkmod.pc
|
||||
#usr/share/bash-completion/completions/kmod
|
||||
|
||||
5
config/rootfiles/common/libaio
Normal file
5
config/rootfiles/common/libaio
Normal file
@@ -0,0 +1,5 @@
|
||||
#usr/include/libaio.h
|
||||
#usr/lib/libaio.a
|
||||
#usr/lib/libaio.so
|
||||
usr/lib/libaio.so.1
|
||||
usr/lib/libaio.so.1.0.1
|
||||
20
config/rootfiles/common/libconfig
Normal file
20
config/rootfiles/common/libconfig
Normal file
@@ -0,0 +1,20 @@
|
||||
#usr/include/libconfig.h
|
||||
#usr/include/libconfig.h++
|
||||
#usr/lib/cmake
|
||||
#usr/lib/cmake/libconfig
|
||||
#usr/lib/cmake/libconfig++
|
||||
#usr/lib/cmake/libconfig++/libconfig++Config.cmake
|
||||
#usr/lib/cmake/libconfig/libconfigConfig.cmake
|
||||
#usr/lib/libconfig++.a
|
||||
#usr/lib/libconfig++.la
|
||||
#usr/lib/libconfig++.so
|
||||
usr/lib/libconfig++.so.11
|
||||
usr/lib/libconfig++.so.11.0.2
|
||||
#usr/lib/libconfig.a
|
||||
#usr/lib/libconfig.la
|
||||
#usr/lib/libconfig.so
|
||||
usr/lib/libconfig.so.11
|
||||
usr/lib/libconfig.so.11.0.2
|
||||
#usr/lib/pkgconfig/libconfig++.pc
|
||||
#usr/lib/pkgconfig/libconfig.pc
|
||||
#usr/share/info/libconfig.info
|
||||
@@ -50,7 +50,6 @@
|
||||
#usr/include/libxml2/libxml/xpath.h
|
||||
#usr/include/libxml2/libxml/xpathInternals.h
|
||||
#usr/include/libxml2/libxml/xpointer.h
|
||||
#usr/lib/cmake
|
||||
#usr/lib/cmake/libxml2
|
||||
#usr/lib/cmake/libxml2/libxml2-config.cmake
|
||||
#usr/lib/libxml2.la
|
||||
|
||||
@@ -1,10 +1,21 @@
|
||||
#etc/lvm
|
||||
#etc/lvm/lvm.conf
|
||||
#etc/lvm/lvmlocal.conf
|
||||
#etc/lvm/profile
|
||||
#etc/lvm/profile/cache-mq.profile
|
||||
#etc/lvm/profile/cache-smq.profile
|
||||
#etc/lvm/profile/command_profile_template.profile
|
||||
#etc/lvm/profile/lvmdbusd.profile
|
||||
#etc/lvm/profile/metadata_profile_template.profile
|
||||
#etc/lvm/profile/thin-generic.profile
|
||||
#etc/lvm/profile/thin-performance.profile
|
||||
#usr/include/libdevmapper.h
|
||||
#usr/lib/libdevmapper.so
|
||||
usr/lib/libdevmapper.so.1.02
|
||||
#usr/lib/pkgconfig/devmapper.pc
|
||||
#usr/sbin/blkdeactivate
|
||||
#usr/sbin/dmsetup
|
||||
#usr/sbin/dmstats
|
||||
#usr/sbin/fsadm
|
||||
#usr/sbin/lvchange
|
||||
#usr/sbin/lvconvert
|
||||
@@ -12,8 +23,8 @@ usr/lib/libdevmapper.so.1.02
|
||||
#usr/sbin/lvdisplay
|
||||
#usr/sbin/lvextend
|
||||
#usr/sbin/lvm
|
||||
#usr/sbin/lvmchange
|
||||
#usr/sbin/lvmconf
|
||||
#usr/sbin/lvmconfig
|
||||
#usr/sbin/lvmdiskscan
|
||||
#usr/sbin/lvmdump
|
||||
#usr/sbin/lvmsadc
|
||||
@@ -53,16 +64,27 @@ usr/lib/libdevmapper.so.1.02
|
||||
#usr/sbin/vgscan
|
||||
#usr/sbin/vgsplit
|
||||
#usr/share/man/man5/lvm.conf.5
|
||||
#usr/share/man/man7/lvmcache.7
|
||||
#usr/share/man/man7/lvmraid.7
|
||||
#usr/share/man/man7/lvmreport.7
|
||||
#usr/share/man/man7/lvmsystemid.7
|
||||
#usr/share/man/man7/lvmthin.7
|
||||
#usr/share/man/man8/blkdeactivate.8
|
||||
#usr/share/man/man8/dmsetup.8
|
||||
#usr/share/man/man8/dmstats.8
|
||||
#usr/share/man/man8/fsadm.8
|
||||
#usr/share/man/man8/lvchange.8
|
||||
#usr/share/man/man8/lvconvert.8
|
||||
#usr/share/man/man8/lvcreate.8
|
||||
#usr/share/man/man8/lvdisplay.8
|
||||
#usr/share/man/man8/lvextend.8
|
||||
#usr/share/man/man8/lvm-config.8
|
||||
#usr/share/man/man8/lvm-dumpconfig.8
|
||||
#usr/share/man/man8/lvm-fullreport.8
|
||||
#usr/share/man/man8/lvm-lvpoll.8
|
||||
#usr/share/man/man8/lvm.8
|
||||
#usr/share/man/man8/lvmchange.8
|
||||
#usr/share/man/man8/lvmconf.8
|
||||
#usr/share/man/man8/lvmconfig.8
|
||||
#usr/share/man/man8/lvmdiskscan.8
|
||||
#usr/share/man/man8/lvmdump.8
|
||||
#usr/share/man/man8/lvmsadc.8
|
||||
|
||||
@@ -1,14 +1,12 @@
|
||||
bin/lowntfs-3g
|
||||
bin/ntfs-3g
|
||||
#lib/libntfs-3g.so
|
||||
lib/libntfs-3g.so.85
|
||||
lib/libntfs-3g.so.85.0.0
|
||||
lib/libntfs-3g.so.88
|
||||
lib/libntfs-3g.so.88.0.0
|
||||
sbin/mkfs.ntfs
|
||||
sbin/mount.lowntfs-3g
|
||||
sbin/mount.ntfs-3g
|
||||
usr/bin/ntfs-3g.probe
|
||||
usr/bin/ntfs-3g.secaudit
|
||||
usr/bin/ntfs-3g.usermap
|
||||
usr/bin/ntfscat
|
||||
usr/bin/ntfscluster
|
||||
usr/bin/ntfscmp
|
||||
@@ -29,10 +27,12 @@ usr/bin/ntfsls
|
||||
#usr/include/ntfs-3g/device.h
|
||||
#usr/include/ntfs-3g/device_io.h
|
||||
#usr/include/ntfs-3g/dir.h
|
||||
#usr/include/ntfs-3g/ea.h
|
||||
#usr/include/ntfs-3g/efs.h
|
||||
#usr/include/ntfs-3g/endians.h
|
||||
#usr/include/ntfs-3g/index.h
|
||||
#usr/include/ntfs-3g/inode.h
|
||||
#usr/include/ntfs-3g/ioctl.h
|
||||
#usr/include/ntfs-3g/layout.h
|
||||
#usr/include/ntfs-3g/lcnalloc.h
|
||||
#usr/include/ntfs-3g/logfile.h
|
||||
@@ -43,6 +43,7 @@ usr/bin/ntfsls
|
||||
#usr/include/ntfs-3g/ntfstime.h
|
||||
#usr/include/ntfs-3g/object_id.h
|
||||
#usr/include/ntfs-3g/param.h
|
||||
#usr/include/ntfs-3g/plugin.h
|
||||
#usr/include/ntfs-3g/realpath.h
|
||||
#usr/include/ntfs-3g/reparse.h
|
||||
#usr/include/ntfs-3g/runlist.h
|
||||
@@ -55,7 +56,8 @@ usr/bin/ntfsls
|
||||
#usr/lib/libntfs-3g.a
|
||||
#usr/lib/libntfs-3g.la
|
||||
#usr/lib/libntfs-3g.so
|
||||
usr/lib/pkgconfig/libntfs-3g.pc
|
||||
#usr/lib/ntfs-3g
|
||||
#usr/lib/pkgconfig/libntfs-3g.pc
|
||||
usr/sbin/mkntfs
|
||||
usr/sbin/ntfsclone
|
||||
usr/sbin/ntfscp
|
||||
@@ -70,17 +72,22 @@ usr/sbin/ntfsundelete
|
||||
#usr/share/man/man8/mount.ntfs-3g.8
|
||||
#usr/share/man/man8/ntfs-3g.8
|
||||
#usr/share/man/man8/ntfs-3g.probe.8
|
||||
#usr/share/man/man8/ntfs-3g.secaudit.8
|
||||
#usr/share/man/man8/ntfs-3g.usermap.8
|
||||
#usr/share/man/man8/ntfscat.8
|
||||
#usr/share/man/man8/ntfsclone.8
|
||||
#usr/share/man/man8/ntfscluster.8
|
||||
#usr/share/man/man8/ntfscmp.8
|
||||
#usr/share/man/man8/ntfscp.8
|
||||
#usr/share/man/man8/ntfsdecrypt.8
|
||||
#usr/share/man/man8/ntfsfallocate.8
|
||||
#usr/share/man/man8/ntfsfix.8
|
||||
#usr/share/man/man8/ntfsinfo.8
|
||||
#usr/share/man/man8/ntfslabel.8
|
||||
#usr/share/man/man8/ntfsls.8
|
||||
#usr/share/man/man8/ntfsprogs.8
|
||||
#usr/share/man/man8/ntfsrecover.8
|
||||
#usr/share/man/man8/ntfsresize.8
|
||||
#usr/share/man/man8/ntfssecaudit.8
|
||||
#usr/share/man/man8/ntfstruncate.8
|
||||
#usr/share/man/man8/ntfsundelete.8
|
||||
#usr/share/man/man8/ntfsusermap.8
|
||||
#usr/share/man/man8/ntfswipe.8
|
||||
|
||||
@@ -1654,7 +1654,10 @@ usr/lib/libssl.so.1.1
|
||||
#usr/share/doc/openssl/html/man3/OCSP_resp_get0_certs.html
|
||||
#usr/share/doc/openssl/html/man3/OCSP_resp_get0_id.html
|
||||
#usr/share/doc/openssl/html/man3/OCSP_resp_get0_produced_at.html
|
||||
#usr/share/doc/openssl/html/man3/OCSP_resp_get0_respdata.html
|
||||
#usr/share/doc/openssl/html/man3/OCSP_resp_get0_signature.html
|
||||
#usr/share/doc/openssl/html/man3/OCSP_resp_get0_signer.html
|
||||
#usr/share/doc/openssl/html/man3/OCSP_resp_get0_tbs_sigalg.html
|
||||
#usr/share/doc/openssl/html/man3/OCSP_response_create.html
|
||||
#usr/share/doc/openssl/html/man3/OCSP_response_get1_basic.html
|
||||
#usr/share/doc/openssl/html/man3/OCSP_response_status.html
|
||||
@@ -1676,6 +1679,7 @@ usr/lib/libssl.so.1.1
|
||||
#usr/share/doc/openssl/html/man3/OPENSSL_LH_stats.html
|
||||
#usr/share/doc/openssl/html/man3/OPENSSL_LH_stats_bio.html
|
||||
#usr/share/doc/openssl/html/man3/OPENSSL_VERSION_NUMBER.html
|
||||
#usr/share/doc/openssl/html/man3/OPENSSL_VERSION_TEXT.html
|
||||
#usr/share/doc/openssl/html/man3/OPENSSL_atexit.html
|
||||
#usr/share/doc/openssl/html/man3/OPENSSL_buf2hexstr.html
|
||||
#usr/share/doc/openssl/html/man3/OPENSSL_cleanse.html
|
||||
@@ -4938,7 +4942,10 @@ usr/lib/libssl.so.1.1
|
||||
#usr/share/man/man3/OCSP_resp_get0_certs.3
|
||||
#usr/share/man/man3/OCSP_resp_get0_id.3
|
||||
#usr/share/man/man3/OCSP_resp_get0_produced_at.3
|
||||
#usr/share/man/man3/OCSP_resp_get0_respdata.3
|
||||
#usr/share/man/man3/OCSP_resp_get0_signature.3
|
||||
#usr/share/man/man3/OCSP_resp_get0_signer.3
|
||||
#usr/share/man/man3/OCSP_resp_get0_tbs_sigalg.3
|
||||
#usr/share/man/man3/OCSP_response_create.3
|
||||
#usr/share/man/man3/OCSP_response_get1_basic.3
|
||||
#usr/share/man/man3/OCSP_response_status.3
|
||||
@@ -4960,6 +4967,7 @@ usr/lib/libssl.so.1.1
|
||||
#usr/share/man/man3/OPENSSL_LH_stats.3
|
||||
#usr/share/man/man3/OPENSSL_LH_stats_bio.3
|
||||
#usr/share/man/man3/OPENSSL_VERSION_NUMBER.3
|
||||
#usr/share/man/man3/OPENSSL_VERSION_TEXT.3
|
||||
#usr/share/man/man3/OPENSSL_atexit.3
|
||||
#usr/share/man/man3/OPENSSL_buf2hexstr.3
|
||||
#usr/share/man/man3/OPENSSL_cleanse.3
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
sbin/paxctl
|
||||
#usr/share/man/man1/paxctl.1
|
||||
@@ -1,102 +1,87 @@
|
||||
bin/udevadm
|
||||
etc/modprobe.d/blacklist.conf
|
||||
etc/udev
|
||||
etc/udev/hwdb.bin
|
||||
etc/udev/hwdb.d
|
||||
etc/udev/hwdb.d/20-OUI.hwdb
|
||||
etc/udev/hwdb.d/20-acpi-vendor.hwdb
|
||||
etc/udev/hwdb.d/20-bluetooth-vendor-product.hwdb
|
||||
etc/udev/hwdb.d/20-net-ifname.hwdb
|
||||
etc/udev/hwdb.d/20-pci-classes.hwdb
|
||||
etc/udev/hwdb.d/20-pci-vendor-model.hwdb
|
||||
etc/udev/hwdb.d/20-sdio-classes.hwdb
|
||||
etc/udev/hwdb.d/20-sdio-vendor-model.hwdb
|
||||
etc/udev/hwdb.d/20-usb-classes.hwdb
|
||||
etc/udev/hwdb.d/20-usb-vendor-model.hwdb
|
||||
etc/udev/hwdb.d/20-vmbus-class.hwdb
|
||||
etc/udev/hwdb.d/60-evdev.hwdb
|
||||
etc/udev/hwdb.d/60-keyboard.hwdb
|
||||
etc/udev/hwdb.d/60-sensor.hwdb
|
||||
etc/udev/hwdb.d/70-mouse.hwdb
|
||||
etc/udev/hwdb.d/70-pointingstick.hwdb
|
||||
etc/udev/hwdb.d/70-touchpad.hwdb
|
||||
#etc/udev/rules.d
|
||||
#etc/udev/rules.d/55-lfs.rules
|
||||
#etc/udev/rules.d/81-cdrom.rules
|
||||
#etc/udev/rules.d/83-cdrom-symlinks.rules
|
||||
#etc/udev/udev.conf
|
||||
#lib/firmware
|
||||
etc/udev/rules.d/55-lfs.rules
|
||||
etc/udev/rules.d/81-cdrom.rules
|
||||
etc/udev/rules.d/83-cdrom-symlinks.rules
|
||||
etc/udev/udev.conf
|
||||
lib/libudev.so.1
|
||||
lib/libudev.so.1.3.2
|
||||
lib/libudev.so.1.6.3
|
||||
lib/udev
|
||||
#lib/udev/accelerometer
|
||||
#lib/udev/ata_id
|
||||
#lib/udev/cdrom_id
|
||||
#lib/udev/collect
|
||||
#lib/udev/devices
|
||||
#lib/udev/devices/pts
|
||||
#lib/udev/enable_codel
|
||||
#lib/udev/hwdb.d
|
||||
#lib/udev/hwdb.d/20-OUI.hwdb
|
||||
#lib/udev/hwdb.d/20-acpi-vendor.hwdb
|
||||
#lib/udev/hwdb.d/20-bluetooth-vendor-product.hwdb
|
||||
#lib/udev/hwdb.d/20-pci-classes.hwdb
|
||||
#lib/udev/hwdb.d/20-pci-vendor-model.hwdb
|
||||
#lib/udev/hwdb.d/20-usb-classes.hwdb
|
||||
#lib/udev/hwdb.d/20-usb-vendor-model.hwdb
|
||||
#lib/udev/hwdb.d/60-keyboard.hwdb
|
||||
#lib/udev/init-net-rules.sh
|
||||
#lib/udev/mtd_probe
|
||||
#lib/udev/network-hotplug-bridges
|
||||
#lib/udev/network-hotplug-rename
|
||||
#lib/udev/network-hotplug-vlan
|
||||
#lib/udev/rule_generator.functions
|
||||
lib/udev/ata_id
|
||||
lib/udev/cdrom_id
|
||||
lib/udev/collect
|
||||
lib/udev/enable_codel
|
||||
lib/udev/init-net-rules.sh
|
||||
lib/udev/mtd_probe
|
||||
lib/udev/network-hotplug-bridges
|
||||
lib/udev/network-hotplug-rename
|
||||
lib/udev/network-hotplug-vlan
|
||||
lib/udev/rule_generator.functions
|
||||
#lib/udev/rules.d
|
||||
#lib/udev/rules.d/25-alsa.rules
|
||||
#lib/udev/rules.d/42-usb-hid-pm.rules
|
||||
#lib/udev/rules.d/50-firmware.rules
|
||||
#lib/udev/rules.d/50-udev-default.rules
|
||||
#lib/udev/rules.d/60-cdrom_id.rules
|
||||
#lib/udev/rules.d/60-keyboard.rules
|
||||
#lib/udev/rules.d/60-net.rules
|
||||
#lib/udev/rules.d/60-persistent-alsa.rules
|
||||
#lib/udev/rules.d/60-persistent-input.rules
|
||||
#lib/udev/rules.d/60-persistent-serial.rules
|
||||
#lib/udev/rules.d/60-persistent-storage-tape.rules
|
||||
#lib/udev/rules.d/60-persistent-storage.rules
|
||||
#lib/udev/rules.d/60-persistent-v4l.rules
|
||||
#lib/udev/rules.d/61-accelerometer.rules
|
||||
#lib/udev/rules.d/64-btrfs.rules
|
||||
#lib/udev/rules.d/75-net-description.rules
|
||||
#lib/udev/rules.d/75-probe_mtd.rules
|
||||
#lib/udev/rules.d/75-tty-description.rules
|
||||
#lib/udev/rules.d/78-sound-card.rules
|
||||
#lib/udev/rules.d/80-drivers.rules
|
||||
#lib/udev/rules.d/80-net-name-slot.rules
|
||||
#lib/udev/rules.d/90-hwrng.rules
|
||||
#lib/udev/rules.d/95-udev-late.rules
|
||||
#lib/udev/rules.d/99-codel.rules
|
||||
#lib/udev/scsi_id
|
||||
#lib/udev/udevd
|
||||
#lib/udev/v4l_id
|
||||
#lib/udev/write_cd_rules
|
||||
#lib/udev/write_net_rules
|
||||
lib/udev/rules.d/25-alsa.rules
|
||||
lib/udev/rules.d/50-udev-default.rules
|
||||
lib/udev/rules.d/60-block.rules
|
||||
lib/udev/rules.d/60-cdrom_id.rules
|
||||
lib/udev/rules.d/60-drm.rules
|
||||
lib/udev/rules.d/60-evdev.rules
|
||||
lib/udev/rules.d/60-input-id.rules
|
||||
lib/udev/rules.d/60-net.rules
|
||||
lib/udev/rules.d/60-persistent-alsa.rules
|
||||
lib/udev/rules.d/60-persistent-input.rules
|
||||
lib/udev/rules.d/60-persistent-storage-tape.rules
|
||||
lib/udev/rules.d/60-persistent-storage.rules
|
||||
lib/udev/rules.d/60-persistent-v4l.rules
|
||||
lib/udev/rules.d/60-sensor.rules
|
||||
lib/udev/rules.d/60-serial.rules
|
||||
lib/udev/rules.d/64-btrfs.rules
|
||||
lib/udev/rules.d/70-joystick.rules
|
||||
lib/udev/rules.d/70-mouse.rules
|
||||
lib/udev/rules.d/70-touchpad.rules
|
||||
lib/udev/rules.d/75-net-description.rules
|
||||
lib/udev/rules.d/75-probe_mtd.rules
|
||||
lib/udev/rules.d/78-sound-card.rules
|
||||
lib/udev/rules.d/80-drivers.rules
|
||||
lib/udev/rules.d/90-hwrng.rules
|
||||
lib/udev/rules.d/99-codel.rules
|
||||
lib/udev/scsi_id
|
||||
lib/udev/v4l_id
|
||||
lib/udev/write_cd_rules
|
||||
lib/udev/write_net_rules
|
||||
sbin/udevadm
|
||||
sbin/udevd
|
||||
#usr/include/libudev.h
|
||||
#usr/lib/firmware
|
||||
usr/lib/libudev.so
|
||||
#usr/include/udev.h
|
||||
#usr/lib/libudev.la
|
||||
#usr/lib/libudev.so
|
||||
#usr/lib/pkgconfig/libudev.pc
|
||||
#usr/lib/pkgconfig/udev.pc
|
||||
#usr/share/doc/udev-208
|
||||
#usr/share/doc/udev-208/lfs
|
||||
#usr/share/doc/udev-208/lfs/55-lfs.txt
|
||||
#usr/share/doc/udev-208/lfs/README
|
||||
#usr/share/doc/udev-208/libudev-overrides.txt
|
||||
#usr/share/doc/udev-208/libudev-sections.txt
|
||||
#usr/share/doc/udev-208/libudev.types
|
||||
#usr/share/gtk-doc
|
||||
#usr/share/gtk-doc/html
|
||||
#usr/share/gtk-doc/html/libudev
|
||||
#usr/share/gtk-doc/html/libudev/api-index-full.html
|
||||
#usr/share/gtk-doc/html/libudev/ch01.html
|
||||
#usr/share/gtk-doc/html/libudev/home.png
|
||||
#usr/share/gtk-doc/html/libudev/index.html
|
||||
#usr/share/gtk-doc/html/libudev/index.sgml
|
||||
#usr/share/gtk-doc/html/libudev/left.png
|
||||
#usr/share/gtk-doc/html/libudev/libudev-udev-device.html
|
||||
#usr/share/gtk-doc/html/libudev/libudev-udev-enumerate.html
|
||||
#usr/share/gtk-doc/html/libudev/libudev-udev-hwdb.html
|
||||
#usr/share/gtk-doc/html/libudev/libudev-udev-list.html
|
||||
#usr/share/gtk-doc/html/libudev/libudev-udev-monitor.html
|
||||
#usr/share/gtk-doc/html/libudev/libudev-udev-queue.html
|
||||
#usr/share/gtk-doc/html/libudev/libudev-udev-util.html
|
||||
#usr/share/gtk-doc/html/libudev/libudev-udev.html
|
||||
#usr/share/gtk-doc/html/libudev/libudev.devhelp2
|
||||
#usr/share/gtk-doc/html/libudev/right.png
|
||||
#usr/share/gtk-doc/html/libudev/style.css
|
||||
#usr/share/gtk-doc/html/libudev/up.png
|
||||
#usr/share/doc/udev-20171102
|
||||
#usr/share/doc/udev-20171102/lfs
|
||||
#usr/share/doc/udev-20171102/lfs/55-lfs.txt
|
||||
#usr/share/doc/udev-20171102/lfs/README
|
||||
#usr/share/man/man5/udev.conf.5
|
||||
#usr/share/man/man7/udev.7
|
||||
#usr/share/man/man8/udevadm.8
|
||||
#usr/share/man/man8/udevd.8
|
||||
#usr/share/pkgconfig
|
||||
#usr/share/pkgconfig/udev.pc
|
||||
|
||||
@@ -11,7 +11,7 @@ etc/unbound/unbound.conf
|
||||
#usr/lib/libunbound.la
|
||||
#usr/lib/libunbound.so
|
||||
usr/lib/libunbound.so.8
|
||||
usr/lib/libunbound.so.8.0.0
|
||||
usr/lib/libunbound.so.8.0.2
|
||||
#usr/lib/pkgconfig/libunbound.pc
|
||||
usr/sbin/unbound
|
||||
usr/sbin/unbound-anchor
|
||||
|
||||
@@ -1,51 +1,49 @@
|
||||
#etc/ld.so.cache
|
||||
etc/rpc
|
||||
lib/ld-2.27.so
|
||||
lib/ld-2.28.so
|
||||
lib/ld-linux-x86-64.so.2
|
||||
lib/libBrokenLocale-2.27.so
|
||||
lib/libBrokenLocale-2.28.so
|
||||
lib/libBrokenLocale.so.1
|
||||
#lib/libSegFault.so
|
||||
lib/libanl-2.27.so
|
||||
lib/libanl-2.28.so
|
||||
lib/libanl.so.1
|
||||
lib/libc-2.27.so
|
||||
lib/libc-2.28.so
|
||||
lib/libc.so.6
|
||||
lib/libcidn-2.27.so
|
||||
lib/libcidn.so.1
|
||||
lib/libcrypt-2.27.so
|
||||
lib/libcrypt-2.28.so
|
||||
lib/libcrypt.so.1
|
||||
lib/libdl-2.27.so
|
||||
lib/libdl-2.28.so
|
||||
lib/libdl.so.2
|
||||
lib/libm-2.27.so
|
||||
lib/libm-2.28.so
|
||||
lib/libm.so.6
|
||||
#lib/libmemusage.so
|
||||
lib/libmvec-2.27.so
|
||||
lib/libmvec-2.28.so
|
||||
lib/libmvec.so.1
|
||||
lib/libnsl-2.27.so
|
||||
lib/libnsl-2.28.so
|
||||
lib/libnsl.so.1
|
||||
lib/libnss_compat-2.27.so
|
||||
lib/libnss_compat-2.28.so
|
||||
lib/libnss_compat.so.2
|
||||
lib/libnss_db-2.27.so
|
||||
lib/libnss_db-2.28.so
|
||||
lib/libnss_db.so.2
|
||||
lib/libnss_dns-2.27.so
|
||||
lib/libnss_dns-2.28.so
|
||||
lib/libnss_dns.so.2
|
||||
lib/libnss_files-2.27.so
|
||||
lib/libnss_files-2.28.so
|
||||
lib/libnss_files.so.2
|
||||
lib/libnss_hesiod-2.27.so
|
||||
lib/libnss_hesiod-2.28.so
|
||||
lib/libnss_hesiod.so.2
|
||||
lib/libnss_nis-2.27.so
|
||||
lib/libnss_nis-2.28.so
|
||||
lib/libnss_nis.so.2
|
||||
lib/libnss_nisplus-2.27.so
|
||||
lib/libnss_nisplus-2.28.so
|
||||
lib/libnss_nisplus.so.2
|
||||
#lib/libpcprofile.so
|
||||
lib/libpthread-2.27.so
|
||||
lib/libpthread-2.28.so
|
||||
lib/libpthread.so.0
|
||||
lib/libresolv-2.27.so
|
||||
lib/libresolv-2.28.so
|
||||
lib/libresolv.so.2
|
||||
lib/librt-2.27.so
|
||||
lib/librt-2.28.so
|
||||
lib/librt.so.1
|
||||
lib/libthread_db-1.0.so
|
||||
lib/libthread_db.so.1
|
||||
lib/libutil-2.27.so
|
||||
lib/libutil-2.28.so
|
||||
lib/libutil.so.1
|
||||
sbin/ldconfig
|
||||
#sbin/sln
|
||||
@@ -66,7 +64,6 @@ usr/bin/locale
|
||||
#usr/bin/sprof
|
||||
#usr/bin/tzselect
|
||||
#usr/bin/xtrace
|
||||
#usr/include/_G_config.h
|
||||
#usr/include/a.out.h
|
||||
#usr/include/aio.h
|
||||
#usr/include/aliases.h
|
||||
@@ -83,9 +80,7 @@ usr/bin/locale
|
||||
#usr/include/arpa/tftp.h
|
||||
#usr/include/assert.h
|
||||
#usr/include/bits
|
||||
#usr/include/bits/_G_config.h
|
||||
#usr/include/bits/a.out.h
|
||||
#usr/include/bits/byteswap-16.h
|
||||
#usr/include/bits/byteswap.h
|
||||
#usr/include/bits/cmathcalls.h
|
||||
#usr/include/bits/confname.h
|
||||
@@ -114,6 +109,7 @@ usr/bin/locale
|
||||
#usr/include/bits/getopt_posix.h
|
||||
#usr/include/bits/hwcap.h
|
||||
#usr/include/bits/in.h
|
||||
#usr/include/bits/indirect-return.h
|
||||
#usr/include/bits/initspin.h
|
||||
#usr/include/bits/inotify.h
|
||||
#usr/include/bits/ioctl-types.h
|
||||
@@ -122,8 +118,6 @@ usr/bin/locale
|
||||
#usr/include/bits/ipctypes.h
|
||||
#usr/include/bits/iscanonical.h
|
||||
#usr/include/bits/libc-header-start.h
|
||||
#usr/include/bits/libio-ldbl.h
|
||||
#usr/include/bits/libio.h
|
||||
#usr/include/bits/libm-simd-decl-stubs.h
|
||||
#usr/include/bits/link.h
|
||||
#usr/include/bits/local_lim.h
|
||||
@@ -132,6 +126,7 @@ usr/bin/locale
|
||||
#usr/include/bits/math-finite.h
|
||||
#usr/include/bits/math-vector.h
|
||||
#usr/include/bits/mathcalls-helper-functions.h
|
||||
#usr/include/bits/mathcalls-narrow.h
|
||||
#usr/include/bits/mathcalls.h
|
||||
#usr/include/bits/mathdef.h
|
||||
#usr/include/bits/mathinline.h
|
||||
@@ -182,6 +177,7 @@ usr/bin/locale
|
||||
#usr/include/bits/stat.h
|
||||
#usr/include/bits/statfs.h
|
||||
#usr/include/bits/statvfs.h
|
||||
#usr/include/bits/statx.h
|
||||
#usr/include/bits/stdint-intn.h
|
||||
#usr/include/bits/stdint-uintn.h
|
||||
#usr/include/bits/stdio-ldbl.h
|
||||
@@ -211,12 +207,16 @@ usr/bin/locale
|
||||
#usr/include/bits/types.h
|
||||
#usr/include/bits/types/FILE.h
|
||||
#usr/include/bits/types/__FILE.h
|
||||
#usr/include/bits/types/__fpos64_t.h
|
||||
#usr/include/bits/types/__fpos_t.h
|
||||
#usr/include/bits/types/__locale_t.h
|
||||
#usr/include/bits/types/__mbstate_t.h
|
||||
#usr/include/bits/types/__sigset_t.h
|
||||
#usr/include/bits/types/__sigval_t.h
|
||||
#usr/include/bits/types/clock_t.h
|
||||
#usr/include/bits/types/clockid_t.h
|
||||
#usr/include/bits/types/cookie_io_functions_t.h
|
||||
#usr/include/bits/types/error_t.h
|
||||
#usr/include/bits/types/locale_t.h
|
||||
#usr/include/bits/types/mbstate_t.h
|
||||
#usr/include/bits/types/res_state.h
|
||||
@@ -226,10 +226,12 @@ usr/bin/locale
|
||||
#usr/include/bits/types/sigset_t.h
|
||||
#usr/include/bits/types/sigval_t.h
|
||||
#usr/include/bits/types/stack_t.h
|
||||
#usr/include/bits/types/struct_FILE.h
|
||||
#usr/include/bits/types/struct_iovec.h
|
||||
#usr/include/bits/types/struct_itimerspec.h
|
||||
#usr/include/bits/types/struct_osockaddr.h
|
||||
#usr/include/bits/types/struct_rusage.h
|
||||
#usr/include/bits/types/struct_sched_param.h
|
||||
#usr/include/bits/types/struct_sigstack.h
|
||||
#usr/include/bits/types/struct_timespec.h
|
||||
#usr/include/bits/types/struct_timeval.h
|
||||
@@ -242,7 +244,6 @@ usr/bin/locale
|
||||
#usr/include/bits/uio-ext.h
|
||||
#usr/include/bits/uio_lim.h
|
||||
#usr/include/bits/unistd.h
|
||||
#usr/include/bits/ustat.h
|
||||
#usr/include/bits/utmp.h
|
||||
#usr/include/bits/utmpx.h
|
||||
#usr/include/bits/utsname.h
|
||||
@@ -298,7 +299,6 @@ usr/bin/locale
|
||||
#usr/include/lastlog.h
|
||||
#usr/include/libgen.h
|
||||
#usr/include/libintl.h
|
||||
#usr/include/libio.h
|
||||
#usr/include/limits.h
|
||||
#usr/include/link.h
|
||||
#usr/include/locale.h
|
||||
@@ -379,14 +379,12 @@ usr/bin/locale
|
||||
#usr/include/rpc/auth_des.h
|
||||
#usr/include/rpc/auth_unix.h
|
||||
#usr/include/rpc/clnt.h
|
||||
#usr/include/rpc/des_crypt.h
|
||||
#usr/include/rpc/key_prot.h
|
||||
#usr/include/rpc/netdb.h
|
||||
#usr/include/rpc/pmap_clnt.h
|
||||
#usr/include/rpc/pmap_prot.h
|
||||
#usr/include/rpc/pmap_rmt.h
|
||||
#usr/include/rpc/rpc.h
|
||||
#usr/include/rpc/rpc_des.h
|
||||
#usr/include/rpc/rpc_msg.h
|
||||
#usr/include/rpc/svc.h
|
||||
#usr/include/rpc/svc_auth.h
|
||||
@@ -528,7 +526,6 @@ usr/bin/locale
|
||||
#usr/include/sys/un.h
|
||||
#usr/include/sys/unistd.h
|
||||
#usr/include/sys/user.h
|
||||
#usr/include/sys/ustat.h
|
||||
#usr/include/sys/utsname.h
|
||||
#usr/include/sys/vfs.h
|
||||
#usr/include/sys/vlimit.h
|
||||
@@ -545,13 +542,13 @@ usr/bin/locale
|
||||
#usr/include/termios.h
|
||||
#usr/include/tgmath.h
|
||||
#usr/include/thread_db.h
|
||||
#usr/include/threads.h
|
||||
#usr/include/time.h
|
||||
#usr/include/ttyent.h
|
||||
#usr/include/uchar.h
|
||||
#usr/include/ucontext.h
|
||||
#usr/include/ulimit.h
|
||||
#usr/include/unistd.h
|
||||
#usr/include/ustat.h
|
||||
#usr/include/utime.h
|
||||
#usr/include/utmp.h
|
||||
#usr/include/utmpx.h
|
||||
@@ -835,13 +832,12 @@ usr/lib/gconv
|
||||
#usr/lib/libc.a
|
||||
#usr/lib/libc.so
|
||||
#usr/lib/libc_nonshared.a
|
||||
#usr/lib/libcidn.so
|
||||
#usr/lib/libcrypt.a
|
||||
#usr/lib/libcrypt.so
|
||||
#usr/lib/libdl.a
|
||||
#usr/lib/libdl.so
|
||||
#usr/lib/libg.a
|
||||
#usr/lib/libm-2.27.a
|
||||
#usr/lib/libm-2.28.a
|
||||
#usr/lib/libm.a
|
||||
#usr/lib/libm.so
|
||||
#usr/lib/libmcheck.a
|
||||
@@ -859,7 +855,6 @@ usr/lib/gconv
|
||||
#usr/lib/libnss_nisplus.so
|
||||
#usr/lib/libpthread.a
|
||||
#usr/lib/libpthread.so
|
||||
#usr/lib/libpthread_nonshared.a
|
||||
#usr/lib/libresolv.a
|
||||
#usr/lib/libresolv.so
|
||||
#usr/lib/librpcsvc.a
|
||||
@@ -2521,6 +2516,20 @@ usr/lib/locale
|
||||
#usr/lib/locale/doi_IN/LC_PAPER
|
||||
#usr/lib/locale/doi_IN/LC_TELEPHONE
|
||||
#usr/lib/locale/doi_IN/LC_TIME
|
||||
#usr/lib/locale/dsb_DE
|
||||
#usr/lib/locale/dsb_DE/LC_ADDRESS
|
||||
#usr/lib/locale/dsb_DE/LC_COLLATE
|
||||
#usr/lib/locale/dsb_DE/LC_CTYPE
|
||||
#usr/lib/locale/dsb_DE/LC_IDENTIFICATION
|
||||
#usr/lib/locale/dsb_DE/LC_MEASUREMENT
|
||||
#usr/lib/locale/dsb_DE/LC_MESSAGES
|
||||
#usr/lib/locale/dsb_DE/LC_MESSAGES/SYS_LC_MESSAGES
|
||||
#usr/lib/locale/dsb_DE/LC_MONETARY
|
||||
#usr/lib/locale/dsb_DE/LC_NAME
|
||||
#usr/lib/locale/dsb_DE/LC_NUMERIC
|
||||
#usr/lib/locale/dsb_DE/LC_PAPER
|
||||
#usr/lib/locale/dsb_DE/LC_TELEPHONE
|
||||
#usr/lib/locale/dsb_DE/LC_TIME
|
||||
#usr/lib/locale/dv_MV
|
||||
#usr/lib/locale/dv_MV/LC_ADDRESS
|
||||
#usr/lib/locale/dv_MV/LC_COLLATE
|
||||
@@ -6217,6 +6226,20 @@ usr/lib/locale
|
||||
#usr/lib/locale/sa_IN/LC_PAPER
|
||||
#usr/lib/locale/sa_IN/LC_TELEPHONE
|
||||
#usr/lib/locale/sa_IN/LC_TIME
|
||||
#usr/lib/locale/sah_RU
|
||||
#usr/lib/locale/sah_RU/LC_ADDRESS
|
||||
#usr/lib/locale/sah_RU/LC_COLLATE
|
||||
#usr/lib/locale/sah_RU/LC_CTYPE
|
||||
#usr/lib/locale/sah_RU/LC_IDENTIFICATION
|
||||
#usr/lib/locale/sah_RU/LC_MEASUREMENT
|
||||
#usr/lib/locale/sah_RU/LC_MESSAGES
|
||||
#usr/lib/locale/sah_RU/LC_MESSAGES/SYS_LC_MESSAGES
|
||||
#usr/lib/locale/sah_RU/LC_MONETARY
|
||||
#usr/lib/locale/sah_RU/LC_NAME
|
||||
#usr/lib/locale/sah_RU/LC_NUMERIC
|
||||
#usr/lib/locale/sah_RU/LC_PAPER
|
||||
#usr/lib/locale/sah_RU/LC_TELEPHONE
|
||||
#usr/lib/locale/sah_RU/LC_TIME
|
||||
#usr/lib/locale/sat_IN
|
||||
#usr/lib/locale/sat_IN/LC_ADDRESS
|
||||
#usr/lib/locale/sat_IN/LC_COLLATE
|
||||
@@ -7967,6 +7990,7 @@ usr/lib/locale
|
||||
#usr/share/i18n/locales/de_LU
|
||||
#usr/share/i18n/locales/de_LU@euro
|
||||
#usr/share/i18n/locales/doi_IN
|
||||
#usr/share/i18n/locales/dsb_DE
|
||||
#usr/share/i18n/locales/dv_MV
|
||||
#usr/share/i18n/locales/dz_BT
|
||||
#usr/share/i18n/locales/el_CY
|
||||
@@ -8150,6 +8174,7 @@ usr/lib/locale
|
||||
#usr/share/i18n/locales/ru_UA
|
||||
#usr/share/i18n/locales/rw_RW
|
||||
#usr/share/i18n/locales/sa_IN
|
||||
#usr/share/i18n/locales/sah_RU
|
||||
#usr/share/i18n/locales/sat_IN
|
||||
#usr/share/i18n/locales/sc_IT
|
||||
#usr/share/i18n/locales/sd_IN
|
||||
|
||||
@@ -183,10 +183,10 @@ etc/rc.d/rcsysinit.d/S45udev_retry
|
||||
etc/rc.d/rcsysinit.d/S50cleanfs
|
||||
etc/rc.d/rcsysinit.d/S60setclock
|
||||
etc/rc.d/rcsysinit.d/S70console
|
||||
etc/rc.d/rcsysinit.d/S71pakfire
|
||||
etc/rc.d/rcsysinit.d/S74aws
|
||||
etc/rc.d/rcsysinit.d/S75firstsetup
|
||||
etc/rc.d/rcsysinit.d/S80localnet
|
||||
etc/rc.d/rcsysinit.d/S81pakfire
|
||||
etc/rc.d/rcsysinit.d/S85firewall
|
||||
etc/rc.d/rcsysinit.d/S92rngd
|
||||
#etc/sysconfig
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -3,14 +3,32 @@ lib/libhandle.so.1.0.3
|
||||
sbin/fsck.xfs
|
||||
sbin/mkfs.xfs
|
||||
sbin/xfs_repair
|
||||
sbin/xfs_scrub
|
||||
sbin/xfs_scrub_all
|
||||
#usr/include/xfs
|
||||
#usr/include/xfs/handle.h
|
||||
#usr/include/xfs/jdm.h
|
||||
#usr/include/xfs/linux.h
|
||||
#usr/include/xfs/xfs.h
|
||||
#usr/include/xfs/xfs_arch.h
|
||||
#usr/include/xfs/xfs_da_format.h
|
||||
#usr/include/xfs/xfs_format.h
|
||||
#usr/include/xfs/xfs_fs.h
|
||||
#usr/include/xfs/xfs_log_format.h
|
||||
#usr/include/xfs/xfs_types.h
|
||||
#usr/include/xfs/xqm.h
|
||||
#usr/lib/libhandle.a
|
||||
#usr/lib/libhandle.la
|
||||
#usr/lib/libhandle.so
|
||||
#usr/lib/xfsprogs
|
||||
#usr/lib/xfsprogs/xfs_scrub_all.cron
|
||||
usr/sbin/xfs_admin
|
||||
usr/sbin/xfs_bmap
|
||||
usr/sbin/xfs_check
|
||||
usr/sbin/xfs_copy
|
||||
usr/sbin/xfs_db
|
||||
usr/sbin/xfs_estimate
|
||||
usr/sbin/xfs_freeze
|
||||
usr/sbin/xfs_fsr
|
||||
usr/sbin/xfs_growfs
|
||||
usr/sbin/xfs_info
|
||||
usr/sbin/xfs_io
|
||||
@@ -21,22 +39,39 @@ usr/sbin/xfs_mkfile
|
||||
usr/sbin/xfs_ncheck
|
||||
usr/sbin/xfs_quota
|
||||
usr/sbin/xfs_rtcp
|
||||
usr/sbin/xfs_spaceman
|
||||
#usr/share/doc/xfsprogs
|
||||
#usr/share/doc/xfsprogs/CHANGES.gz
|
||||
#usr/share/doc/xfsprogs/COPYING
|
||||
#usr/share/doc/xfsprogs/CREDITS
|
||||
#usr/share/doc/xfsprogs/PORTING
|
||||
#usr/share/doc/xfsprogs/README
|
||||
#usr/share/locale/de/LC_MESSAGES/xfsprogs.mo
|
||||
#usr/share/locale/pl/LC_MESSAGES/xfsprogs.mo
|
||||
#usr/share/man/man2/ioctl_xfs_scrub_metadata.2
|
||||
#usr/share/man/man3/attr_list_by_handle.3
|
||||
#usr/share/man/man3/attr_multi_by_handle.3
|
||||
#usr/share/man/man3/fd_to_handle.3
|
||||
#usr/share/man/man3/free_handle.3
|
||||
#usr/share/man/man3/fssetdm_by_handle.3
|
||||
#usr/share/man/man3/getparentpaths_by_handle.3
|
||||
#usr/share/man/man3/getparents_by_handle.3
|
||||
#usr/share/man/man3/handle_to_fshandle.3
|
||||
#usr/share/man/man3/open_by_handle.3
|
||||
#usr/share/man/man3/path_to_fshandle.3
|
||||
#usr/share/man/man3/path_to_handle.3
|
||||
#usr/share/man/man3/readlink_by_handle.3
|
||||
#usr/share/man/man3/xfsctl.3
|
||||
#usr/share/man/man5/projects.5
|
||||
#usr/share/man/man5/projid.5
|
||||
#usr/share/man/man5/xfs.5
|
||||
#usr/share/man/man8/fsck.xfs.8
|
||||
#usr/share/man/man8/mkfs.xfs.8
|
||||
#usr/share/man/man8/xfs_admin.8
|
||||
#usr/share/man/man8/xfs_bmap.8
|
||||
#usr/share/man/man8/xfs_check.8
|
||||
#usr/share/man/man8/xfs_copy.8
|
||||
#usr/share/man/man8/xfs_db.8
|
||||
#usr/share/man/man8/xfs_estimate.8
|
||||
#usr/share/man/man8/xfs_freeze.8
|
||||
#usr/share/man/man8/xfs_fsr.8
|
||||
#usr/share/man/man8/xfs_growfs.8
|
||||
#usr/share/man/man8/xfs_info.8
|
||||
#usr/share/man/man8/xfs_io.8
|
||||
@@ -48,3 +83,6 @@ usr/sbin/xfs_rtcp
|
||||
#usr/share/man/man8/xfs_quota.8
|
||||
#usr/share/man/man8/xfs_repair.8
|
||||
#usr/share/man/man8/xfs_rtcp.8
|
||||
#usr/share/man/man8/xfs_scrub.8
|
||||
#usr/share/man/man8/xfs_scrub_all.8
|
||||
#usr/share/man/man8/xfs_spaceman.8
|
||||
|
||||
4
config/rootfiles/core/127/filelists/files
Normal file
4
config/rootfiles/core/127/filelists/files
Normal file
@@ -0,0 +1,4 @@
|
||||
etc/system-release
|
||||
etc/issue
|
||||
srv/web/ipfire/cgi-bin/credits.cgi
|
||||
var/ipfire/langs
|
||||
1
config/rootfiles/core/127/filelists/fireinfo
Symbolic link
1
config/rootfiles/core/127/filelists/fireinfo
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/fireinfo
|
||||
62
config/rootfiles/core/127/update.sh
Normal file
62
config/rootfiles/core/127/update.sh
Normal file
@@ -0,0 +1,62 @@
|
||||
#!/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) 2018 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
|
||||
|
||||
core=127
|
||||
|
||||
# Remove old core updates from pakfire cache to save space...
|
||||
for (( i=1; i<=$core; i++ )); do
|
||||
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
|
||||
done
|
||||
|
||||
# Stop services
|
||||
|
||||
# Remove files
|
||||
|
||||
# Extract files
|
||||
extract_files
|
||||
|
||||
# update linker config
|
||||
ldconfig
|
||||
|
||||
# Update Language cache
|
||||
/usr/local/bin/update-lang-cache
|
||||
|
||||
# Start services
|
||||
/etc/init.d/unbound restart
|
||||
|
||||
# Finish
|
||||
/etc/init.d/fireinfo start
|
||||
sendprofile
|
||||
|
||||
# Update grub config to display new core version
|
||||
if [ -e /boot/grub/grub.cfg ]; then
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
fi
|
||||
|
||||
sync
|
||||
|
||||
# Don't report the exitcode last command
|
||||
exit 0
|
||||
28
config/rootfiles/oldcore/124/exclude
Normal file
28
config/rootfiles/oldcore/124/exclude
Normal file
@@ -0,0 +1,28 @@
|
||||
boot/config.txt
|
||||
boot/grub/grub.cfg
|
||||
boot/grub/grubenv
|
||||
etc/alternatives
|
||||
etc/collectd.custom
|
||||
etc/default/grub
|
||||
etc/ipsec.conf
|
||||
etc/ipsec.secrets
|
||||
etc/ipsec.user.conf
|
||||
etc/ipsec.user.secrets
|
||||
etc/localtime
|
||||
etc/shadow
|
||||
etc/snort/snort.conf
|
||||
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/dma
|
||||
var/ipfire/time
|
||||
var/ipfire/ovpn
|
||||
var/lib/alternatives
|
||||
var/log/cache
|
||||
var/log/dhcpcd.log
|
||||
var/log/messages
|
||||
var/state/dhcp/dhcpd.leases
|
||||
var/updatecache
|
||||
1
config/rootfiles/oldcore/124/filelists/unbound
Symbolic link
1
config/rootfiles/oldcore/124/filelists/unbound
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/unbound
|
||||
28
config/rootfiles/oldcore/125/exclude
Normal file
28
config/rootfiles/oldcore/125/exclude
Normal file
@@ -0,0 +1,28 @@
|
||||
boot/config.txt
|
||||
boot/grub/grub.cfg
|
||||
boot/grub/grubenv
|
||||
etc/alternatives
|
||||
etc/collectd.custom
|
||||
etc/default/grub
|
||||
etc/ipsec.conf
|
||||
etc/ipsec.secrets
|
||||
etc/ipsec.user.conf
|
||||
etc/ipsec.user.secrets
|
||||
etc/localtime
|
||||
etc/shadow
|
||||
etc/snort/snort.conf
|
||||
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/dma
|
||||
var/ipfire/time
|
||||
var/ipfire/ovpn
|
||||
var/lib/alternatives
|
||||
var/log/cache
|
||||
var/log/dhcpcd.log
|
||||
var/log/messages
|
||||
var/state/dhcp/dhcpd.leases
|
||||
var/updatecache
|
||||
1
config/rootfiles/oldcore/125/filelists/aarch64/glibc
Symbolic link
1
config/rootfiles/oldcore/125/filelists/aarch64/glibc
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../common/aarch64/glibc
|
||||
1
config/rootfiles/oldcore/125/filelists/apache2
Symbolic link
1
config/rootfiles/oldcore/125/filelists/apache2
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/apache2
|
||||
1
config/rootfiles/oldcore/125/filelists/bind
Symbolic link
1
config/rootfiles/oldcore/125/filelists/bind
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/bind
|
||||
1
config/rootfiles/oldcore/125/filelists/ca-certificates
Symbolic link
1
config/rootfiles/oldcore/125/filelists/ca-certificates
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/ca-certificates
|
||||
1
config/rootfiles/oldcore/125/filelists/collectd
Symbolic link
1
config/rootfiles/oldcore/125/filelists/collectd
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/collectd
|
||||
1
config/rootfiles/oldcore/125/filelists/coreutils
Symbolic link
1
config/rootfiles/oldcore/125/filelists/coreutils
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/coreutils
|
||||
1
config/rootfiles/oldcore/125/filelists/dhcpcd
Symbolic link
1
config/rootfiles/oldcore/125/filelists/dhcpcd
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/dhcpcd
|
||||
1
config/rootfiles/oldcore/125/filelists/e2fsprogs
Symbolic link
1
config/rootfiles/oldcore/125/filelists/e2fsprogs
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/e2fsprogs
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user