various fixes, improve flidas
[automated-distro-installer] / fai / config / scripts / GRUB_PC / 11-ian
diff --git a/fai/config/scripts/GRUB_PC/11-ian b/fai/config/scripts/GRUB_PC/11-ian
deleted file mode 100755 (executable)
index 949f181..0000000
+++ /dev/null
@@ -1,105 +0,0 @@
-#!/bin/bash -x
-
-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
-fi
-
-if ! type -t fcopy &>/dev/null; then
-  sudo apt-get -y install fai-client
-fi
-
-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 <<EOF
-kexec-tools kexec-tools/load_kexec boolean false
-EOF
-apt-get install -y pxe-kexec
-EOFOUTER
-
-# -r = recursive
-# -i = ignore non-matching class warnings, always exit 0
-# -B = no backup files
-fcopy -riB /boot
-# this is also done by FABASE/10-misc by default.
-fcopy -riB /root
-
-
-src=$FAI/distro-install-common/shadow
-dst=/q/root/shadow
-if [[ ! -e $dst && -e $src ]]; then
-  # outside of fai context, we skip this
-  mkdir -p $dst
-  mount -o bind $src $dst
-fi
-
-$FAI/distro-install-common/end
-if ifclass VOL_STABLE_BOOTSTRAP; then
-  fcopy -ri /etc/systemd/system
-  chroot $FAI_ROOT bash <<'EOFOUTER'
-systemctl enable fai_check.service
-EOFOUTER
-  exit 0 # avoid unnecessary stuff in bootstrap vol
-fi
-
-
-# these get copied in an earlier stage by fai, but leaving it here since
-# I run this as a single post-fai script to update things that have changed.
-fcopy -riB /etc/apt
-# outside of fai, this seems to regularly lead to
-# E: Could not get lock /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable)
-# so add a sleep. 1 sec is probably way more than needed.
-sleep 1
-$ROOTCMD apt-get update
-
-
-chroot $FAI_ROOT bash <<'EOF'
-set -eE -o pipefail
-mkdir -p /home/iank/.ssh
-f=/root/.ssh/authorized_keys
-if [[ -e $f ]]; then
-   cp $f /home/iank/.ssh
-fi
-chown -R 1000:1000 /home/iank/.ssh
-chmod -R u=Xrw,og= /home/iank/.ssh
-rm -rf /root/.ssh
-cp -rL /home/iank/.ssh /root
-chown -R root:root /root/.ssh
-chmod 700 /root/.ssh
-
-
-# default jessie groups + kvm, systemd-journal, adm
-usermod -aG adm,cdrom,floppy,sudo,audio,dip,video,plugdev,netdev iank
-
-if getent group systemd-journal >/dev/null; then
-  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
-# 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
-
-# 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 iank is in but traci isn't,
-for g in plugdev audio video cdrom; do
-    $ROOTCMD usermod -a -G $g traci
-done