calamares-settings-ubuntu/kubuntu/oem/calamares-oemprep.sh

13 lines
455 B
Bash
Raw Normal View History

2024-02-12 17:26:01 -06:00
#!/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;
2024-04-29 21:14:34 +00:00
chown -R 1000:1000 "$1"/home/oem
2024-02-12 17:26:01 -06:00
# 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