diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-03 14:16:29 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-03 14:16:29 +0100 |
commit | 375febf62ad5119d7f367724226d0fd8aee6b499 (patch) | |
tree | 5788e11de1dc6c7c05d613a21b3cd7327b143fc3 | |
parent | 9a86ec4e11d08dbdc7e3895c49e5f6c87773b0b3 (diff) |
var_TARGET_DIR fixes + todo updates
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | src/core/procedures/interactive | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -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 |