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 2e8b71ca698238b679cc5098fb9f0def8ebf716b (commit) via 3b1dbfba60fcfdbe4da096676f8aa32a863e084d (commit) from 3ab685b34bd439f77c2f90f4c8214b025eb99e1c (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 2e8b71ca698238b679cc5098fb9f0def8ebf716b Author: Arne Fitzenreiter arne_f@ipfire.org Date: Fri Feb 15 07:41:50 2013 +0100
installer: fix firstsetup and set ext4 fs for unattend.
commit 3b1dbfba60fcfdbe4da096676f8aa32a863e084d Author: Arne Fitzenreiter arne_f@ipfire.org Date: Fri Feb 15 07:30:11 2013 +0100
backupiso: don't redownload source iso every time.
-----------------------------------------------------------------------
Summary of changes: src/install+setup/install/main.c | 8 +------- src/scripts/backupiso | 7 +++++-- 2 files changed, 6 insertions(+), 9 deletions(-)
Difference in files: diff --git a/src/install+setup/install/main.c b/src/install+setup/install/main.c index 14139b5..bf0a356 100644 --- a/src/install+setup/install/main.c +++ b/src/install+setup/install/main.c @@ -277,7 +277,7 @@ int main(int argc, char *argv[]) ctr[TR_CANCEL], NULL); } else { rc = 1; - fstype = EXT3; + fstype = EXT4; } if (rc == 2) goto EXIT; @@ -596,12 +596,6 @@ EXIT: fclose(flog); newtFinished();
- if (unattended) { - // Remove Setup autorun after boot - if (system("rm -f /harddisk/etc/rc.d/rcsysinit.d/S75firstsetup")) - printf("Unable to disable setup autorun.\n"); - } - if (system("/bin/umount /harddisk/proc")) printf("Unable to umount /harddisk/proc.\n"); } else { diff --git a/src/scripts/backupiso b/src/scripts/backupiso index ffbc54f..111a350 100644 --- a/src/scripts/backupiso +++ b/src/scripts/backupiso @@ -15,8 +15,11 @@ TS=$1 mkdir -p /var/tmp/backupiso cd /var/tmp/backupiso
-echo "Fetching ${URL}${ISO}" -wget --quiet -c ${URL}${ISO} +if [ ! -e ${ISO} ] +then + echo "Fetching ${URL}${ISO}" + wget --quiet -c ${URL}${ISO} +else echo "Fetching ${URL}${ISO}.md5" wget --quiet -O ${ISO}.md5 ${URL}${ISO}.md5
hooks/post-receive -- IPFire 2.x development tree