* [git.ipfire.org] IPFire 2.x development tree branch, core66, updated. eb7fff99fc287ed76ed39a3d408006bbcf0aabd4
@ 2013-02-15 18:17 git
0 siblings, 0 replies; only message in thread
From: git @ 2013-02-15 18:17 UTC (permalink / raw)
To: ipfire-scm
[-- Attachment #1: Type: text/plain, Size: 2895 bytes --]
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 2.x development tree".
The branch, core66 has been updated
via eb7fff99fc287ed76ed39a3d408006bbcf0aabd4 (commit)
from 2e8b71ca698238b679cc5098fb9f0def8ebf716b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit eb7fff99fc287ed76ed39a3d408006bbcf0aabd4
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date: Fri Feb 15 19:15:11 2013 +0100
backupiso: disable on arm (we have no iso).
and fix syntax error.
-----------------------------------------------------------------------
Summary of changes:
html/cgi-bin/backup.cgi | 10 ++++++++--
src/scripts/backupiso | 3 ++-
2 files changed, 10 insertions(+), 3 deletions(-)
Difference in files:
diff --git a/html/cgi-bin/backup.cgi b/html/cgi-bin/backup.cgi
index 8c93814..830775d 100644
--- a/html/cgi-bin/backup.cgi
+++ b/html/cgi-bin/backup.cgi
@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2005-2010 IPFire Team #
+# Copyright (C) 2005-2013 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -176,7 +176,13 @@ print <<END
<td align='left'>
<input type='radio' name='BACKUPLOGS' value='include'/> $Lang::tr{'include logfiles'}<br/>
<input type='radio' name='BACKUPLOGS' value='exclude' checked='checked'/> $Lang::tr{'exclude logfiles'}<br/>
- <input type='radio' name='BACKUPLOGS' value='iso' /> $Lang::tr{'generate iso'}
+END
+;
+my $MACHINE=`uname -m`;
+if ( ! ( $MACHINE =~ "arm" )) {
+ print" <input type='radio' name='BACKUPLOGS' value='iso' /> $Lang::tr{'generate iso'}<br/>"
+}
+print <<END
</td>
</tr>
<tr><td align='center' colspan='2'>
diff --git a/src/scripts/backupiso b/src/scripts/backupiso
index 111a350..30616a4 100644
--- a/src/scripts/backupiso
+++ b/src/scripts/backupiso
@@ -19,7 +19,8 @@ if [ ! -e ${ISO} ]
then
echo "Fetching ${URL}${ISO}"
wget --quiet -c ${URL}${ISO}
-else
+fi
+
echo "Fetching ${URL}${ISO}.md5"
wget --quiet -O ${ISO}.md5 ${URL}${ISO}.md5
hooks/post-receive
--
IPFire 2.x development tree
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2013-02-15 18:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-15 18:17 [git.ipfire.org] IPFire 2.x development tree branch, core66, updated. eb7fff99fc287ed76ed39a3d408006bbcf0aabd4 git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox