summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2009-01-24 19:05:58 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2009-01-24 19:05:58 +0100
commitde61605d525c06cbb19813d08e809994ac779728 (patch)
treef70deb22edb9dd3c8d15ff6d436dcb9cc781fa7d
parentb3cd45966241d82f2076e87a6d4a2bbf81cc2e90 (diff)
todo updates
-rw-r--r--TODO1
-rw-r--r--src/core/libs/lib-pacman.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/TODO b/TODO
index 7eed72d..62ab451 100644
--- a/TODO
+++ b/TODO
@@ -57,6 +57,7 @@ PRODUCTION PHASE: be the primary installer. deprecate /arch/setup and /arch/qui
* core/interactive: do pacman -Sy in the background during early phases, to lessen the wait period before selecting packages
* write bash completion thing for aif modules/procedures
* add dmraid/mdadm support -> patches welcome. i don't care about this.
+* check if it would be useful to support kickstart config files. we can look at quickstart for that http://dev.gentoo.org/~agaffney/quickstart.php
SOMEDAY/MAYBE/RANDOM THOUGHTS:
* the quickinst assumes the user did some stuff by himself and does some
diff --git a/src/core/libs/lib-pacman.sh b/src/core/libs/lib-pacman.sh
index d613052..89c3638 100644
--- a/src/core/libs/lib-pacman.sh
+++ b/src/core/libs/lib-pacman.sh
@@ -86,7 +86,7 @@ done
[ ! -d "${var_TARGET_DIR}/var/lib/pacman" ] && mkdir -m 755 -p "${var_TARGET_DIR}/var/lib/pacman"
infofy "Refreshing package database..."
- $PACMAN_TARGET -Sy >$LOG 2>&1 || return 1
+ $PACMAN_TARGET -Sy >$LOG 2>&1 || return 1 #TODO: make sure this also goes into the logfile. actually we should do this for many commands.
return 0
}