aboutsummaryrefslogtreecommitdiff
path: root/contrib/kiss-reset
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/kiss-reset')
-rwxr-xr-xcontrib/kiss-reset24
1 files changed, 0 insertions, 24 deletions
diff --git a/contrib/kiss-reset b/contrib/kiss-reset
deleted file mode 100755
index 326cb80..0000000
--- a/contrib/kiss-reset
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh -ef
-# Remove all packages except for the base
-#
-# Disable word-splittng warnings as they're safe here.
-# shellcheck disable=SC2046
-
-set --
-
-while read -r pkg _; do
- case $pkg in
- baselayout|binutils|bison|busybox|bzip2|curl|flex|gcc|rsync|\
- gzip|kiss|libressl|linux-headers|m4|make|musl|pkgconf|xz|zlib) ;;
-
- *) set -- "$@" "$pkg" ;;
- esac
-done <<EOF
-$(kiss l)
-EOF
-
-[ "$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 r "$@"
-}