diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-10-20 09:50:10 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-10-20 13:46:34 -0300 |
commit | ae2e58c9270fe770882c4cc3c00e63d579cde156 (patch) | |
tree | 85787ec0da7053b1a82ffe53e9ecd974f300748d | |
parent | 450396e2c49190d4367a1621735b24808d15be8e (diff) | |
download | archiso32-ae2e58c9270fe770882c4cc3c00e63d579cde156.tar.xz |
[configs/releng] Rename again / rework autologin@.service
-f is not needed anymore, disable explicitly default getty service
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-rwxr-xr-x | configs/releng/build.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/configs/releng/build.sh b/configs/releng/build.sh index e758ff3..006f3fb 100755 --- a/configs/releng/build.sh +++ b/configs/releng/build.sh @@ -174,8 +174,9 @@ make_customize_root_image() { sed -i "s/#Server/Server/g" ${work_dir}/root-image/etc/pacman.d/mirrorlist patch ${work_dir}/root-image/usr/bin/pacman-key < ${script_path}/pacman-key-4.0.3_unattended-keyring-init.patch sed -i 's/#\(en_US\.UTF-8\)/\1/' ${work_dir}/root-image/etc/locale.gen - sed 's#\(^ExecStart=-/sbin/agetty\)#\1 --autologin root#' \ - ${work_dir}/root-image/usr/lib/systemd/system/getty@.service > ${work_dir}/root-image/etc/systemd/system/getty@.service + sed 's#\(^ExecStart=-/sbin/agetty\)#\1 --autologin root#; + s#\(^Alias=getty.target.wants/\).\+#\1autologin@tty1.service#' \ + ${work_dir}/root-image/usr/lib/systemd/system/getty@.service > ${work_dir}/root-image/etc/systemd/system/autologin@.service mkarchiso ${verbose} -w "${work_dir}" -C "${pacman_conf}" -D "${install_dir}" \ -r 'locale-gen' \ run @@ -186,7 +187,10 @@ make_customize_root_image() { -r 'useradd -m -p "" -g users -G "adm,audio,floppy,log,network,rfkill,scanner,storage,optical,power,wheel" -s /bin/zsh arch' \ run mkarchiso ${verbose} -w "${work_dir}" -C "${pacman_conf}" -D "${install_dir}" \ - -r 'systemctl -f enable multi-user.target pacman-init.service getty@.service dhcpcd.service || true' \ + -r 'systemctl disable getty@tty1.service || true' \ + run + mkarchiso ${verbose} -w "${work_dir}" -C "${pacman_conf}" -D "${install_dir}" \ + -r 'systemctl enable multi-user.target pacman-init.service autologin@.service dhcpcd.service || true' \ run : > ${work_dir}/build.${FUNCNAME} fi |