mirror of
https://git.launchpad.net/~ubuntu-qt-code/+git/calamares-settings-ubuntu
synced 2025-02-12 22:07:04 +00:00
16 lines
285 B
Plaintext
16 lines
285 B
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
# Launch Calamares normally.
|
||
|
|
||
|
if [ -e '/etc/calamares/OEM_MODE_ACTIVATED' ]; then
|
||
|
msg="$(cat <<EOL
|
||
|
The installer was previously run in OEM mode. Please reboot to reset the
|
||
|
configuration and try again.
|
||
|
EOL
|
||
|
)";
|
||
|
kdialog --msgbox "${msg}";
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
calamares -D8;
|