X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fscripts%2FGRUB_PC%2F11-ian;h=a10efef37e185b42fd8e8a5d40c22b57a4b07a6c;hb=0a2a4d11ef323da19d0cebe2f5ec7b1be7bd15bc;hp=629d1bc6a0deaf9a34b91c49b10dd44dda4bad1c;hpb=c8bd51084bc4d90b9653d521e7cb05e17e417d97;p=automated-distro-installer diff --git a/fai/config/scripts/GRUB_PC/11-ian b/fai/config/scripts/GRUB_PC/11-ian index 629d1bc..a10efef 100755 --- a/fai/config/scripts/GRUB_PC/11-ian +++ b/fai/config/scripts/GRUB_PC/11-ian @@ -4,44 +4,63 @@ 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 +fi -dir=/q/root/shadow -if [[ ! -e $dir ]]; then - mkdir -p $dir - echo "IANNNNNN 111" - ls -la $FAI/distro-install-common/shadow - mount -o bind $FAI/distro-install-common/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 +debconf-set-selections </dev/null; then + usermod -aG systemd-journal ian +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 +# making it not installed then kills plymouth, then makes +# the system not boot. +sed -ri 's/(^ *GRUB_CMDLINE_LINUX.*)quiet splash/\1/' /etc/default/grub +# on xenial, no grub is displayed at all. fix that. +# found just by noticing this in the config file, and a +# warning about it in error.log +sed -i '/^ *GRUB_HIDDEN_TIMEOUT/d' /etc/default/grub +update-grub2 EOF @@ -58,7 +92,3 @@ EOF for g in plugdev audio video cdrom; do $ROOTCMD usermod -a -G $g traci done - -# makes the journal be saved to disk. -$ROOTCMD mkdir -p $FAI_ROOT/var/log/journal -$ROOTCMD chmod 755 $FAI_ROOT/var/log/journal