DHCP und Squid-Initscripts optimiert fuer ein schnelleres starten und stoppen.

Which und lsof zur ISO hinzugefuegt.
Update-XLrator cacht unsere Pakfire-Pakete und rpm/deb-Pakete.
Pakfire weitergebaut.
UPnP aus dem Menue genommen.
Samba-Symlinks korrigiert.


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@657 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2007-07-01 21:41:27 +00:00
parent 32ab16debd
commit 186e3d2cf8
16 changed files with 245 additions and 75 deletions

View File

@@ -32,7 +32,7 @@
'caption' => 'UPnP',
'uri' => '/cgi-bin/upnp.cgi',
'title' => "Universal Plug and Play",
'enabled' => 1,
'enabled' => 0,
};
$subfirewall->{'70.fwopts'} = {
'caption' => $Lang::tr{'options fw'},

View File

@@ -2,7 +2,7 @@
bin/gunzip
bin/gzip
bin/uncompress
#bin/zcat
bin/zcat
#usr/bin/gzexe
#usr/bin/zcmp
#usr/bin/zdiff

View File

@@ -0,0 +1 @@
usr/bin/lsof

View File

@@ -0,0 +1,3 @@
usr/bin/which
#usr/info/which.info
#usr/man/man1/which.1

View File

@@ -1,4 +1,5 @@
etc/pam.d/cups
etc/rc.d/init.d/cups
#etc/rc0.d
#etc/rc0.d/K00cups
#etc/rc2.d
@@ -563,9 +564,9 @@ usr/share/cups/templates/test-page.tmpl
usr/share/cups/templates/trailer.tmpl
usr/share/cups/templates/users.tmpl
#usr/share/doc/cups
#usr/share/doc/cups/cups-printable.css
#usr/share/doc/cups/cups.css
#usr/share/doc/cups/de
usr/share/doc/cups/cups-printable.css
usr/share/doc/cups/cups.css
usr/share/doc/cups/de
#usr/share/doc/cups/de/images
#usr/share/doc/cups/de/images/button-accept-jobs.gif
#usr/share/doc/cups/de/images/button-add-class.gif
@@ -675,7 +676,7 @@ usr/share/cups/templates/users.tmpl
#usr/share/doc/cups/es/images/button-view-printable-version.gif
#usr/share/doc/cups/es/index.html
#usr/share/doc/cups/favicon.ico
#usr/share/doc/cups/help
usr/share/doc/cups/help
#usr/share/doc/cups/help/api-array.html
#usr/share/doc/cups/help/api-cups.html
#usr/share/doc/cups/help/api-filedir.html
@@ -740,7 +741,7 @@ usr/share/cups/templates/users.tmpl
#usr/share/doc/cups/help/standard.html
#usr/share/doc/cups/help/translation.html
#usr/share/doc/cups/help/whatsnew.html
#usr/share/doc/cups/images
usr/share/doc/cups/images
#usr/share/doc/cups/images/bottom-left.gif
#usr/share/doc/cups/images/bottom-right.gif
#usr/share/doc/cups/images/button-accept-jobs.gif
@@ -815,7 +816,7 @@ usr/share/cups/templates/users.tmpl
#usr/share/doc/cups/images/web-printer-status.gif
#usr/share/doc/cups/images/web-set-printer-options.gif
#usr/share/doc/cups/images/web-test-page.gif
#usr/share/doc/cups/index.html
usr/share/doc/cups/index.html
#usr/share/doc/cups/ja
#usr/share/doc/cups/ja/images
#usr/share/doc/cups/ja/images/button-accept-jobs.gif
@@ -922,7 +923,7 @@ usr/share/cups/templates/users.tmpl
#usr/share/doc/cups/pl/images/button-view-page-log.gif
#usr/share/doc/cups/pl/images/button-view-printable-version.gif
#usr/share/doc/cups/pl/index.html
#usr/share/doc/cups/robots.txt
usr/share/doc/cups/robots.txt
#usr/share/doc/cups/sv
#usr/share/doc/cups/sv/images
#usr/share/doc/cups/sv/images/button-accept-jobs.gif

View File

@@ -124,9 +124,28 @@ while (<>) {
if ($dsturl =~ m@^http://download[0-99]\.avast\.com/.*\.(exe|zip|vps|stamp|vpu)$@i)
{
$from_local_cache = &cache_access($dsturl,$hostaddr,$username,"Avast");
}
# -----------------------------------------------------------
# Section: IPFire Downloads
# -----------------------------------------------------------
if ($dsturl =~ m@^[f|h]t?tp://.*\.(ipfire)$@i)
{
$from_local_cache = &cache_access($dsturl,$hostaddr,$username,"IPFire");
}
# -----------------------------------------------------------
# Section: Linux Downloads
# -----------------------------------------------------------
if ($dsturl =~ m@^[f|h]t?tp://.*\.(deb|rpm)$@i)
{
$from_local_cache = &cache_access($dsturl,$hostaddr,$username,"Linux");
}
# -----------------------------------------------------------
}