summaryrefslogtreecommitdiffstats
path: root/src/profile/proteanos.sh
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2020-12-09 12:23:52 (EST)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2020-12-10 06:53:04 (EST)
commitdb225718e10b0f32859e8c04d85dc2126ba96d16 (patch)
treed373be3dafdeadea28bb88e9dc4514dd739c620c /src/profile/proteanos.sh
parenta334a3a4dbbceb155cbb565249d04c0fb094f0a5 (diff)
profile/proteanos: Install base-files, config-base
Not all essential packages.
Diffstat (limited to 'src/profile/proteanos.sh')
-rw-r--r--src/profile/proteanos.sh9
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