aboutsummaryrefslogtreecommitdiff
path: root/src/rc.slack-autoupdate
diff options
context:
space:
mode:
authorSlack Coder <slackcoder@server.ky>2024-06-09 09:17:49 -0500
committerSlack Coder <slackcoder@server.ky>2024-06-09 09:17:49 -0500
commit5a77ca874c46d256ac415cadb7d36cab2f57a1fd (patch)
tree04f472b277793fa423ce1846881e829c8e603741 /src/rc.slack-autoupdate
parent65032081535a904654cb8f359de5d7dbce746f5a (diff)
downloadslack-autoupdate-5a77ca874c46d256ac415cadb7d36cab2f57a1fd.tar.xz
Minimize package install output
Use pkgtool's '--terse' option for more pleasant output when installing updates.
Diffstat (limited to 'src/rc.slack-autoupdate')
-rw-r--r--src/rc.slack-autoupdate2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc.slack-autoupdate b/src/rc.slack-autoupdate
index ba5f847..cb82f09 100644
--- a/src/rc.slack-autoupdate
+++ b/src/rc.slack-autoupdate
@@ -26,7 +26,7 @@ fi
OLD_KERNEL="$(md5sum /boot/vmlinuz | cut -f1 -d' ')"
for PKG in $UPDATES; do
- upgradepkg --install-new "$PKG"
+ upgradepkg --install-new --terse "$PKG"
done
NEW_KERNEL="$(md5sum /boot/vmlinuz | cut -f1 -d' ')"