aboutsummaryrefslogtreecommitdiff
path: root/contrib/cpt-reset
blob: 1226fe6845710b523d0cde41a436984b51de08eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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|cpt|libressl|linux-headers|m4|make|musl|pkgconf|xz|zlib) ;;

        *) set -- "$@" "$pkg" ;;
    esac
done <<EOF
$(cpt-list)
EOF

[ "$1" ] && {
    printf 'WARNING: This will remove \033[1m%s\033[m package(s).\n' "$#"
    printf 'Continue? [Enter/Ctrl+C]\n'
    read -r _ && CPT_FORCE=1 cpt-remove "$@"
}