X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fscripts%2FGRUB_PC%2F11-ian;h=8cd841f875cfc76af9e1393d19aa63cd610f29f9;hb=bdcc37dee90597b4a65c2ae24b9fc26f15adfc11;hp=5dc250a74faf494db0fe33cf598c5197ec0b8e5d;hpb=afabe0c27af744200aa6b6e05c5b2ab7d7518c1e;p=automated-distro-installer diff --git a/fai/config/scripts/GRUB_PC/11-ian b/fai/config/scripts/GRUB_PC/11-ian index 5dc250a..8cd841f 100755 --- a/fai/config/scripts/GRUB_PC/11-ian +++ b/fai/config/scripts/GRUB_PC/11-ian @@ -3,40 +3,71 @@ set -eE -o pipefail trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR -$ROOTCMD adduser --disabled-password --gecos ian ian - -if [[ ! $ROOTPW ]]; then - echo "$0: error: empty \$ROOTPW" - exit 1 +if [[ $EUID != 0 ]]; then + echo "$0: error: expected to be root." + exit 1 fi -$ROOTCMD usermod -p "$ROOTPW" ian +if ! type -t fcopy &>/dev/null; then + sudo apt-get -y install fai-client +fi -if ifclass STABLE; then - fcopy -M /etc/apt/preferences +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 +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 - -$ROOTCMD adduser --disabled-password --gecos traci traci -$ROOTCMD usermod -a -G traci ian # reading through the groups that ian is in but traci isn't, for g in plugdev audio video cdrom; do $ROOTCMD usermod -a -G $g traci done - -if ifclass frodo; then - $ROOTCMD usermod -p "$(cat /var/lib/fai/config/distro-install-common/traci-simple)" traci -fi - - -# makes the journal be saved to disk. -$ROOTCMD mkdir -p /target/var/log/journal -$ROOTCMD chmod 755 /target/var/log/journal