mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 14:05:41 -07:00
22 lines
513 B
Bash
Executable File
22 lines
513 B
Bash
Executable File
#!/bin/sh -e
|
|
# Remove all packages except for the base
|
|
|
|
set --
|
|
|
|
for pkg in "$KISS_ROOT/var/db/kiss/installed/"*; do
|
|
pkg=${pkg##*/}
|
|
|
|
case $pkg in
|
|
baselayout|binutils|bison|busybox|bzip2|curl|flex|gcc|git|\
|
|
gzip|kiss|libressl|linux-headers|m4|make|musl|xz|zlib) ;;
|
|
|
|
*) set -- "$@" "$pkg" ;;
|
|
esac
|
|
done
|
|
|
|
[ "$1" ] && {
|
|
printf 'WARNING: This will remove \033[1m%s\033[m package(s).\n' "$#"
|
|
printf 'Continue? [Enter/Ctrl+C]\n'
|
|
read -r _ && KISS_FORCE=1 kiss remove "$@"
|
|
}
|