mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 14:05:41 -07:00
18 lines
360 B
Bash
Executable File
18 lines
360 B
Bash
Executable File
#!/bin/sh -e
|
|
#
|
|
# kiss-orphans - List orphaned packages.
|
|
|
|
cd "$KISS_ROOT/var/db/kiss/installed/"
|
|
|
|
for pkg in *; do
|
|
# Skip these packages.
|
|
case $pkg in
|
|
baseinit|baselayout|gcc|pkgconf|e2fsprogs|\
|
|
make|busybox|bzip2|grub|automake)
|
|
continue
|
|
;;
|
|
esac
|
|
|
|
grep -q "^$pkg$" ./*/depends || printf '%s\n' "$pkg"
|
|
done
|