diff options
Diffstat (limited to 'src/profile')
-rw-r--r-- | src/profile/proteanos.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/profile/proteanos.sh b/src/profile/proteanos.sh index 61a8439..bec35ed 100644 --- a/src/profile/proteanos.sh +++ b/src/profile/proteanos.sh @@ -227,10 +227,11 @@ prof_proteanos_include_pkg() local value="${2}" shift 2 - if [ "x${name}" = 'xessential' ]; then - if [ "x${value}" = 'xyes' ]; then - return 0 - fi + if [ "x${name}" = 'xpackage' ]; then + case "${value}" in + 'base-files' | 'config-base') + return 0;; + esac fi return 1 |