From ac00e3ed38c44c9ad634e89edbc025a7bf1a3ce7 Mon Sep 17 00:00:00 2001 From: Darren 'Tadgy' Austin Date: Thu, 19 Mar 2026 20:17:17 +0000 Subject: [PATCH] Support Devuan in cronjob-update-packages-list. --- cronjob-update-packages-list | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cronjob-update-packages-list b/cronjob-update-packages-list index 824965d..7c74c26 100755 --- a/cronjob-update-packages-list +++ b/cronjob-update-packages-list @@ -14,7 +14,7 @@ case "$ID" in 'alpine') apk list -I | cut -d' ' -f1 | rev | cut -d- -f3- | rev >/etc/pkglist ;; - 'debian'|'ubuntu') + 'debian'|'devuan'|'ubuntu') dpkg-query --show --showformat='${Package}\n' >/etc/pkglist ;; 'slackware')