Ein weiteres Webradion hinzugefügt

Backup include angepasst
Pakfire timeout auf 20 gesetzt
Fix im Networking Skript für any


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@949 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
maniacikarus
2007-10-06 10:10:24 +00:00
parent 91a08eac19
commit f6504eb327
4 changed files with 6 additions and 3 deletions

View File

@@ -83,7 +83,7 @@ case "${1}" in
;;
stop)
boot_mesg "Removing IPv4 address ${ADDRESS} from the ${1} interface..."
boot_mesg "Removing IPv4 address ${ADDRESS} from the ${2} interface..."
ip addr del ${args} dev ${DEVICE}
evaluate_retval
;;

View File

@@ -281,11 +281,11 @@ sub selectmirror {
### Check if there is a current server list and read it.
# If there is no list try to get one.
my $count = 0;
while (!(open(FILE, "<$Conf::dbdir/lists/server-list.db")) && ($count lt 5)) {
while (!(open(FILE, "<$Conf::dbdir/lists/server-list.db")) && ($count lt 20)) {
$count++;
getmirrors("noforce");
}
if ($count == 5) {
if ($count == 20) {
message("MIRROR ERROR: Could not find or download a server list");
exit 1;
}