]> git.saurik.com Git - apt.git/blobdiff - dselect/update
Fixed script positions
[apt.git] / dselect / update
index ca507c4c670403bbcbc080016edf5164e6ea2ea3..3260278b66c6dba3776923ec51ff8821ed1f6a70 100755 (executable)
@@ -7,9 +7,11 @@ APTGET="/usr/bin/apt-get"
 APTCACHE="/usr/bin/apt-cache"
 DPKG="/usr/bin/dpkg"
 CACHEDIR="/var/cache/apt"
+PROMPT="no"
 RES=`apt-config shell OPTS DSelect::UpdateOptions \
       DPKG Dir::Bin::dpkg APTGET Dir::Bin::apt-get \
-      APTCACHE Dir::Bin::apt-cache CACHEDIR Dir::Cache`
+      APTCACHE Dir::Bin::apt-cache CACHEDIR Dir::Cache \
+      PROMPT DSelect::PromptAfterUpdate`
 eval $RES
 
 $APTGET $OPTS update
@@ -19,4 +21,9 @@ rm -f /var/cache/apt/available
 $APTCACHE dumpavail > $CACHEDIR/available
 $DPKG --update-avail $CACHEDIR/available
 rm -f $CACHEDIR/available
+
+if [ $PROMPT == "yes" ]; then
+   echo "Press enter to continue." && read RES;
+fi
+
 exit 0