mirror of
https://git.launchpad.net/~ubuntu-qt-code/+git/calamares-settings-ubuntu
synced 2025-07-23 06:21:30 +00:00
17 lines
665 B
Bash
Executable File
17 lines
665 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Puts the installed system into OEM configuration mode. Argument 1 is the
|
|
# path to the installed system's root directory.
|
|
|
|
# Install the OEM configuration for Calamares
|
|
tar xvzf /etc/calamares/oemconfig.tar.gz -C "$1" --strip-components=2;
|
|
chown -R 1000:1000 "$1"/home/oem
|
|
|
|
# Ensure the desktop file is marked as trusted
|
|
# See line 96 of scripts/casper-bottom/25adduser in src:casper as shipped in Plucky
|
|
gio set /home/oem/Desktop/calamares-finish-oem.desktop metadata::trusted true
|
|
|
|
# Enable passwordless sudo for the OEM user, making sure this can be undone later
|
|
mv "$1"/etc/sudoers "$1"/etc/sudoers.orig
|
|
mv "$1"/etc/sudoers.oem "$1"/etc/sudoers
|