X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fscripts%2FGRUB_PC%2F11-ian;h=3be239f424b1de99488e31aefaf555ef1a885adf;hb=ec9227898fa68bd89de454c87bce8ea051a8d783;hp=11cd818d50df43b2130ed64bf08608cf9bb79e39;hpb=f6b9ade60186b7be2ecf39266ced982ec7efc633;p=automated-distro-installer diff --git a/fai/config/scripts/GRUB_PC/11-ian b/fai/config/scripts/GRUB_PC/11-ian index 11cd818..3be239f 100755 --- a/fai/config/scripts/GRUB_PC/11-ian +++ b/fai/config/scripts/GRUB_PC/11-ian @@ -4,39 +4,49 @@ 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 + +# note: +# fcopy -i = ignore nonmatching class error, always return 0. +fcopy -riM /root/.ssh + +chroot $FAI_ROOT bash <<'EOFOUTER' +debconf-set-selections </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 + mkdir -p $dir + mount -o bind $fai_shadow $dir fi $FAI/distro-install-common/end if ifclass STABLE || ifclass LINODESTABLE; then - fcopy -M /etc/apt/preferences + fcopy -M /etc/apt/preferences fi if ifclass DEBIAN; then - fcopy -M /etc/apt/preferences.d/unstable + fcopy -M /etc/apt/preferences.d/unstable fi fcopy -riM /etc/apt/sources.list.d $ROOTCMD apt-get update -# note: -# fcopy -i = ignore nonmatching class error, always return 0. - -# for lj, this will be empty and fail -fcopy -riM /home/ian/.ssh rm -f $FAI_ROOT/etc/apt/sources.list @@ -54,9 +64,16 @@ cp -rL /home/ian/.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,systemd-journal ian +usermod -aG adm,cdrom,floppy,sudo,audio,dip,video,plugdev,netdev ian +if getent group systemd-journal >/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 +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 @@ -75,6 +92,3 @@ 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