#! /bin/sh set -e # Try to detect which frontend will be used by looking for a frontend # module. frontend= for f in gtk_ui kde_ui debconf_ui; do if [ -f "/usr/lib/ubiquity/ubiquity/frontend/$f.py" ]; then frontend="$f" break fi done quiet= if [ "$1" = --quiet ]; then quiet=1 shift fi if [ "$(id -u)" = 0 ]; then # Machine-specific, so remove in case this system is going to be # cloned. These will be regenerated on the first boot. rm -f /etc/udev/rules.d/70-persistent-cd.rules \ /etc/udev/rules.d/70-persistent-net.rules # Potentially sensitive. rm -f /home/oem/.ssh/known_hosts touch /var/lib/oem-config/run else case $frontend in gtk_ui) gksudo --desktop /usr/share/applications/oem-config-prepare-gtk.desktop -- "$0" ${quiet:---quiet} "$@" ;; kde_ui) echo kde_ui kdesu= #kdesudo seems to have issues with this, so default to the original kdesu if [ -x /usr/lib/kde4/libexec/kdesu.distrib ]; then kdesu=/usr/lib/kde4/libexec/kdesu.distrib elif [ -x /usr/lib/kde4/libexec/kdesu ]; then kdesu=/usr/lib/kde4/libexec/kdesu fi if [ "$kdesu" ]; then $kdesu -- "$0" ${quiet:---quiet} "$@" else sudo -- "$0" ${quiet:---quiet} "$@" fi ;; *) sudo -- "$0" ${quiet:---quiet} "$@" ;; esac fi if [ -z "$quiet" ]; then MESSAGE='oem-config will run the next time the system boots.' case $frontend in gtk_ui) if [ "$DISPLAY" ] && type zenity >/dev/null 2>&1; then zenity --title oem-config-prepare --info --text \ "$MESSAGE" exit 0 fi ;; kde_ui) if [ "$DISPLAY" ] && type kdialog >/dev/null 2>&1; then kdialog --title oem-config-prepare --msgbox "$MESSAGE" exit 0 fi ;; esac echo "$MESSAGE" fi exit 0