diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2014-12-06 00:14:11 +0100 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2014-12-06 00:14:11 +0100 |
| commit | ad900a84709bb6c2b751f9d5bed2ce7280c7dc04 (patch) | |
| tree | 89b121dbbbf08fc6dc5b91e867f203012075957a /liveusb/airootfs/root/customize_airootfs.sh | |
| parent | 1aca4d1a3d7a1a444cc555f81ad488ce1ab67522 (diff) | |
Soup up the config, use the releng profile
Diffstat (limited to 'liveusb/airootfs/root/customize_airootfs.sh')
| -rwxr-xr-x | liveusb/airootfs/root/customize_airootfs.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/liveusb/airootfs/root/customize_airootfs.sh b/liveusb/airootfs/root/customize_airootfs.sh new file mode 100755 index 0000000..aecf7f1 --- /dev/null +++ b/liveusb/airootfs/root/customize_airootfs.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +set -e -u + +sed -i 's/#\(en_US\.UTF-8\)/\1/' /etc/locale.gen +locale-gen + +ln -sf /usr/share/zoneinfo/UTC /etc/localtime + +usermod -s /usr/bin/zsh root +cp -aT /etc/skel/ /root/ +chmod 700 /root + +useradd -m -p "" -g users -G "adm,audio,floppy,log,network,rfkill,scanner,storage,optical,power,wheel" -s /usr/bin/zsh arch + +chmod 750 /etc/sudoers.d +chmod 440 /etc/sudoers.d/g_wheel + +sed -i "s/#Server/Server/g" /etc/pacman.d/mirrorlist +sed -i 's/#\(Storage=\)auto/\1volatile/' /etc/systemd/journald.conf + +systemctl enable pacman-init.service choose-mirror.service +systemctl set-default multi-user.target |
