X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;ds=sidebyside;f=fai%2Fconfig%2Fscripts%2FGRUB_PC%2F11-ian;h=949f1817627b1450732694ee90b23193335cb909;hb=175cf089388948672b5b4b6f9a8cf5a96a7015f2;hp=e27e394e8ac3509032d1ab194fc8c35812ebee92;hpb=d0b6a8cd4608fdffcf733f9180744819d8889be0;p=automated-distro-installer diff --git a/fai/config/scripts/GRUB_PC/11-ian b/fai/config/scripts/GRUB_PC/11-ian index e27e394..949f181 100755 --- a/fai/config/scripts/GRUB_PC/11-ian +++ b/fai/config/scripts/GRUB_PC/11-ian @@ -4,65 +4,82 @@ set -eE -o pipefail trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR if [[ $EUID != 0 ]]; then - echo "$0: error: expected to be root." - exit 1 + echo "$0: error: expected to be root." + exit 1 fi if ! type -t fcopy &>/dev/null; then - sudo apt-get -y install fai-client + sudo apt-get -y install fai-client fi -dir=/q/root/shadow -fai_shadow=$FAI/distro-install-common/shadow -if [[ ! -e $dir && -e $fai_shadow ]]; then - mkdir -p $dir - mount -o bind $fai_shadow $dir +chroot $FAI_ROOT bash <<'EOFOUTER' +if getent group systemd-journal >/dev/null; then + # makes the journal be saved to disk. + mkdir -p /var/log/journal + chmod 755 /var/log/journal fi -$FAI/distro-install-common/end - -if ifclass STABLE || ifclass LINODESTABLE; then - fcopy -M /etc/apt/preferences +debconf-set-selections </dev/null; then - usermod -aG systemd-journal ian - # makes the journal be saved to disk. - mkdir -p /var/log/journal - chmod 755 /var/log/journal + usermod -aG systemd-journal iank fi # https://askubuntu.com/questions/33416/how-do-i-disable-the-boot-splash-screen-and-only-show-kernel-and-boot-text-inst # it suggests not having plymouth-theme-ubuntu-text, but @@ -74,11 +91,15 @@ sed -ri 's/(^ *GRUB_CMDLINE_LINUX.*)quiet splash/\1/' /etc/default/grub # warning about it in error.log sed -i '/^ *GRUB_HIDDEN_TIMEOUT/d' /etc/default/grub update-grub2 + +# this is usefull. Only thing reason I see this being disabled by default is +# that a normal user can disrupt the system, eg cause a reboot. +sed -i '$a kernel.sysrq=1 +/^kernel.sysrq=/d' /etc/sysctl.conf EOF -# reading through the groups that ian is in but traci isn't, +# reading through the groups that iank is in but traci isn't, for g in plugdev audio video cdrom; do $ROOTCMD usermod -a -G $g traci done -