fix(profiles): Disable pam in -usr images.

pam complicates our tiny little OS, I don't think we actually have a
need for pam so instead of fixing it to move configs to /usr just
disable it. If someone comes up with a need we can fix pam later.
This commit is contained in:
Michael Marineau 2014-03-22 21:49:34 -07:00
parent 7487cee327
commit 2b9355d63d

View File

@ -4,5 +4,9 @@
# Enable tweaks to install everything under /usr
USE="symlink-usr"
# Currently we have no particular need for pam and it is the biggest
# thing we have left in /etc. Disable for now, we can revisit later.
USE="${USE} -pam"
# Append -usr to disk layout names (use base-usr, not base)
COREOS_DISK_LAYOUT_SUFFIX="-usr"