commit 5a77ca874c46d256ac415cadb7d36cab2f57a1fd
parent 65032081535a904654cb8f359de5d7dbce746f5a
Author: Slack Coder <slackcoder@server.ky>
Date: Sun, 9 Jun 2024 09:17:49 -0500
Minimize package install output
Use pkgtool's '--terse' option for more pleasant output when installing
updates.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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' ')"