summaryrefslogtreecommitdiffstats
path: root/tasks/update.task.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/update.task.sh')
-rw-r--r--tasks/update.task.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks/update.task.sh b/tasks/update.task.sh
index f6ec089..de1c5b1 100644
--- a/tasks/update.task.sh
+++ b/tasks/update.task.sh
@@ -3,8 +3,8 @@ update_package_dependencies="bootstrap"
update() {
ME=update
echo " Refresh apt sources"
- chroot-exec aptitude update > $DEBUG.$ME 2>&1
+ chroot-exec apt-get update > $DEBUG.$ME 2>&1
echo -n " Running system update "
- chroot-exec aptitude -y safe-upgrade | tee -a - $DEBUG.$ME | awk '{printf "."}' 2>&1
+ chroot-exec apt-get -y upgrade | tee -a - $DEBUG.$ME | awk '{printf "."}' 2>&1
echo "done"
}