From f51b2a2b65958489343a53afbdeacf2868576cf0 Mon Sep 17 00:00:00 2001 From: heapbytes Date: Sat, 4 Mar 2023 22:43:11 +0530 Subject: [PATCH] rootfs update --- src/airootfs/root/customize_airootfs.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/airootfs/root/customize_airootfs.sh b/src/airootfs/root/customize_airootfs.sh index 7472fd2..dc23440 100644 --- a/src/airootfs/root/customize_airootfs.sh +++ b/src/airootfs/root/customize_airootfs.sh @@ -1,14 +1,18 @@ #!/bin/bash -#setting permission for postinstall script +## Enable Chaotic AUR ## +pacman-key --init +pacman-key --recv-key FBA220DFC880C036 --keyserver keyserver.ubuntu.com +pacman-key --lsign-key FBA220DFC880C036 + +## Set zsh as default shell for new user ## +sed -i -e 's#SHELL=.*#SHELL=/bin/zsh#g' /etc/default/useradd + +#setting permission for postinstall script chmod 777 /usr/local/bin/post_install.sh chmod 777 /usr/local/bin/chrooted_post_install.sh chmod 777 /usr/bin/post_install.sh chmod 777 /usr/bin/chrooted_post_install.sh - - - -