X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fscripts%2FGRUB_PC%2F11-ian;h=5d064be41bfa8593539c54ac1e1d9d65ee494c8d;hb=a2d5a9fa8af23a2af6b97a55d87b6591d212fe2d;hp=1bb4fda2d7e5b60e9b2a4516b7b042734ebfdece;hpb=8730d8986b29c6481223b02a85eaf448212a97c1;p=automated-distro-installer diff --git a/fai/config/scripts/GRUB_PC/11-ian b/fai/config/scripts/GRUB_PC/11-ian index 1bb4fda..5d064be 100755 --- a/fai/config/scripts/GRUB_PC/11-ian +++ b/fai/config/scripts/GRUB_PC/11-ian @@ -1,39 +1,68 @@ #!/bin/bash -x set -eE -o pipefail -trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?"' ERR +trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR -$ROOTCMD adduser --disabled-password --gecos ian ian -$ROOTCMD usermod -p "$ROOTPW" ian +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 + +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 +fi +$FAI/distro-install-common/end -if ifclass STABLE; then +if ifclass STABLE || ifclass LINODESTABLE; then fcopy -M /etc/apt/preferences fi if ifclass DEBIAN; then fcopy -M /etc/apt/preferences.d/unstable fcopy -riM /etc/apt/sources.list.d + $ROOTCMD apt-get update fi -# -i, ignore nonmatching class error, always return 0. -fcopy -r -M -i /home/ian/.ssh -/var/lib/fai/config/distro-install-common/end +# note: +# fcopy -i = ignore nonmatching class error, always return 0. -rm -f /target/etc/apt/sources.list +# for lj, this will be empty and fail +fcopy -riM /home/ian/.ssh -chroot /target bash <<'EOF' +rm -f $FAI_ROOT/etc/apt/sources.list + +chroot $FAI_ROOT bash <<'EOF' +set -eE -o pipefail +mkdir -p /home/ian/.ssh +f=/root/.ssh/authorized_keys +if [[ -e $f ]]; then + cp $f /home/ian/.ssh +fi chown -R 1000:1000 /home/ian/.ssh chmod -R u=Xrw,og= /home/ian/.ssh -cp -ar /home/ian/.ssh /root +rm -rf /root/.ssh +cp -rL /home/ian/.ssh /root chown -R root:root /root/.ssh +chmod 700 /root/.ssh -# default jessie groups + kvm & systemd-journal -usermod -aG cdrom,floppy,sudo,audio,dip,video,plugdev,netdev,kvm,systemd-journal ian +# default jessie groups + kvm, systemd-journal, adm +usermod -aG adm,cdrom,floppy,sudo,audio,dip,video,plugdev,netdev,systemd-journal ian EOF -apt-get -y install unison-gtk -if ifclass STABLE; then - apt-get -y install unison-gtk/testing -fi +# 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 + +# makes the journal be saved to disk. +$ROOTCMD mkdir -p $FAI_ROOT/var/log/journal +$ROOTCMD chmod 755 $FAI_ROOT/var/log/journal