summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-11-03 14:16:29 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-11-03 14:16:29 +0100
commit375febf62ad5119d7f367724226d0fd8aee6b499 (patch)
tree5788e11de1dc6c7c05d613a21b3cd7327b143fc3
parent9a86ec4e11d08dbdc7e3895c49e5f6c87773b0b3 (diff)
var_TARGET_DIR fixes + todo updates
-rw-r--r--TODO1
-rw-r--r--src/core/procedures/interactive4
2 files changed, 3 insertions, 2 deletions
diff --git a/TODO b/TODO
index bd362e0..8725c8e 100644
--- a/TODO
+++ b/TODO
@@ -1,3 +1,4 @@
+* interactive procedure: clean worker_select_source. cleanup bottom
* get interactive procedure working (decoupled flow control/other stuff. not
yet ui vs backend), make it alpha version and post to ML
* base procedure wordt implementatie van alles wat auto gaat uit setup script, other steps warning 'not implemented'
diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive
index bd82258..2a187dd 100644
--- a/src/core/procedures/interactive
+++ b/src/core/procedures/interactive
@@ -135,14 +135,14 @@ configure_system()
# /etc/pacman.d/mirrorlist
# add installer-selected mirror to the top of the mirrorlist
if [ "$MODE" = "ftp" -a "${SYNC_URL}" != "" ]; then
- awk "BEGIN { printf(\"# Mirror used during installation\nServer = "${SYNC_URL}"\n\n\") } 1 " "${TARGET_DIR}/etc/pacman.d/mirrorlist"
+ awk "BEGIN { printf(\"# Mirror used during installation\nServer = "${SYNC_URL}"\n\n\") } 1 " "${var_TARGET_DIR}/etc/pacman.d/mirrorlist"
fi
# /etc/rc.conf
# insert timezone and utc info
sed -i -e "s/^TIMEZONE=.*/TIMEZONE=\"$TIMEZONE\"/g" \
-e "s/^HARDWARECLOCK=.*/HARDWARECLOCK=\"$HARDWARECLOCK\"/g" \
- ${TARGET_DIR}/etc/rc.conf
+ ${var_TARGET_DIR}/etc/rc.conf
fi