As user-setup-ask is part of the user-setup package, which is included in oem-config, where would a patch that enables creation of additional users during oem-config-firstboot best reside? As patch of the scripts included in oem-config, or directly in user-setup?
A patch could look like this for oem-config: user-setup: export ALLOWMULTIPLEUSERS=yes user-setup-ask: change if [ "$RET" = true ] && ! is_system_user; then to if [ "$RET" = true ]; then if [ ! is_system_user || $ALLOWMULTIPLEUSERS ]; then This can be combined into one line, though not sure on the bash syntax. -- oem-prepare cannot cope if oem creates user (?) https://bugs.launchpad.net/bugs/153310 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
