#! /bin/bash # Run oem-config on the first boot after shipping to the end user. set -e DEBUG= AUTOMATIC= for option;do case $option in --debug) DEBUG=--debug ;; --automatic) AUTOMATIC=--automatic ;; esac done # KDM stores the default user here, and apparently gets upset that we've # just removed its previous default user. rm -f /var/lib/kdm/kdmsts # Revert to creating a user at uid 1000. echo RESET passwd/user-uid | debconf-communicate >/dev/null if [ -z "$AUTOMATIC" ]; then # These two templates have been preseeded, which does nasty things # to their templates. It's probably a bug in cdebconf's # debconf-copydb that they end up still registered to # debian-installer/dummy at this point, but let's just work around # it for now so that we get sensible translated descriptions. for q in passwd/user-fullname passwd/username; do echo REGISTER "$q" "$q" echo RESET "$q" done | debconf-communicate oem-config >/dev/null fi # Remove the oem-config-prepare menu item. rm -f /usr/share/applications/oem-config-prepare-gtk.desktop \ /usr/share/applications/kde4/oem-config-prepare-kde.desktop # Run a command just before starting oem-config. RET="$(echo GET oem-config/early_command | debconf-communicate)" || true if [ "${RET%% *}" = 0 ]; then command="${RET#* }" log-output sh -c "$command" || true fi # TODO: will this work for X-based frontends when X isn't up yet? if [ -z "$FRONTEND" ]; then FRONTEND="$(/usr/sbin/oem-config -q)" fi if [ ! -e '/var/log/installer' ]; then mkdir -p /var/log/installer fi if [ "$DEBUG" ]; then TRY=1 else TRY=5 fi for try in $(seq 1 $TRY); do CODE=0 if [ "$FRONTEND" = debconf_ui ]; then plymouth quit || true LANG=en_US.UTF-8 FRONTEND="$FRONTEND" \ /usr/sbin/oem-config-wrapper $DEBUG $AUTOMATIC --only \ 2>>/var/log/oem-config.log \ || CODE=$? else FRONTEND="$FRONTEND" \ /usr/bin/ubiquity-dm vt7 :0 oem \ /usr/sbin/oem-config-wrapper $DEBUG $AUTOMATIC --only || CODE=$? fi if [ "$CODE" -eq 0 ]; then # Remove the temporary OEM configuration user, if possible # and desired. RET="$(echo GET oem-config/remove | debconf-communicate)" if [ "${RET#* }" = true ] && getent passwd oem >/dev/null; then pkill -u oem || true userdel --force --remove oem || true fi /bin/systemctl set-default graphical.target || true /bin/systemctl disable oem-config.service || true /bin/systemctl disable oem-config.target || true rm -f /lib/systemd/system/oem-config.* || true /bin/systemctl --no-block isolate graphical.target || true exit 0 elif [ "$CODE" -eq 10 ]; then cat </dev/null; then pkill -u oem || true userdel --force --remove oem || true fi apt-get -y purge ubiquity >>/var/log/oem-config.log 2>&1 fi reboot fi exit 0