#!/bin/bash -l # Copyright (C) 2016 Ian Kelling # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # for setting up a new machine # usage: $0 [-r] HOSTNAME # tips: # run any sudo command first so your pass is cached # set the scrollback to unlimited in case something goes wrong ####### begin setup environment ####### ### make ssh interactive shell run better. for when running line interactively line by line sudo bash -c 'source /a/c/.bashrc && source /a/exe/ssh-emacs-setup' ##### setup error handling interactive=true # set this to false to force set -x [[ $- == *i* ]] || interactive=false if ! $interactive; then set -x fi source /a/bin/errhandle/err ### setup logging exec &> >(sudo tee -a /var/log/distro-begin) echo "$0: $(date): starting now)" ### sanity checking if [[ $EUID == 0 ]]; then if getent passwd iank || getent passwd ian ; then echo "$0: error: running as root. unprivileged user exists. use it." exit 1 else echo "$0: warning: running as root. I will setup users then exit" fi fi ### arg parsing recompile=false while [[ $1 == -* ]]; do case $1 in -r) recompile=true; shift ;; esac done if [[ $1 ]]; then export HOSTNAME=$1 fi ##### variables/env setup script_dir="$(readlink -f "$BASH_SOURCE")"; script_dir=${script_dir%/*} source $script_dir/pkgs set +x source /a/bin/distro-functions/src/identify-distros $interactive || set -x for f in iank-dev htpc kd x2 x3 frodo tp li lj demohost kw fz; do eval "$f() { [[ $HOSTNAME == $f ]]; }" done has_p() { ! linode; } # when tp is tracis, then not tp either has_x() { ! linode; } linode() { lj || li; } has_btrfs() { ! linode; } home_network() { ! linode; } encrypted() { has_p; } shopt -s extglob export GLOBIGNORE=*/.:*/.. umask 022 PATH="/a/exe:$PATH" sed="sed --follow-symlinks" ####### end setup environment ####### ##### begin setup encryption scripts ###### if encrypted; then # I tried making a service which was dependent on reboot.target, # but it happened too late in the shutdown process. sudo dd of=/etc/systemd/system/keyscripton.service <<'EOF' [Unit] Description=Turn on automatic decryption of drives on boot # tried using graphical.target, but it made my display manager restart before rebooting. # generally, I don't think targets order shutdown like they do startup. # So, I did systemd-analyze plot > something.svg, and picked a reliably started # service that happens late in the game. After=ntp.service DefaultDependencies=no # not sure if needed, makes sure we shut down before reboot.target Conflicts=reboot.target [Service] Type=oneshot RemainAfterExit=yes ExecStart=/bin/true ExecStop=/a/exe/keyscript-on [Install] WantedBy=keyscriptoff.service EOF sudo systemctl daemon-reload # needed if the file was already there sudo systemctl stop keyscripton.service # sudo systemctl start keyscripton.service sudo systemctl enable keyscripton.service sudo dd of=/etc/systemd/system/keyscriptoff.service <<'EOF' [Unit] Description=Turn off automatic decryption of drives on boot [Service] Type=oneshot ExecStart=/a/exe/keyscript-off [Install] WantedBy=multi-user.target EOF sudo systemctl daemon-reload # needed if the file was already there sudo systemctl enable keyscriptoff.service sudo systemctl start keyscriptoff.service # from /usr/share/doc/dropbear-initramfs/README.initramfs.gz while read m _; do /sbin/modinfo -F filename "$m"; done /lib/cryptsetup/passfifo fi ##### end setup encryption scripts ###### # disabled until its fixed up # install-myqueue # todo, it would be nice to cut down on some of the output ##### fedora prereq/fundamental settings if isfedora; then # comment out line disallowing calling sudo in scripts sudo $sed -i 's/^Defaults *requiretty/#\0 # ian commented/' /etc/sudoers # turn on magic sysrq commands echo 1 > sudo dd of=/proc/sys/kernel/sysrq echo "kernel.sysrq = 1" > /etc/sysctl.d/90-sysrq.conf # selinux is not user friendly. Like, you enable samba, but you haven't run the magic selinux commands so it doesn't work # and you have no idea why. sudo $sed -i 's/^\(SELINUX=\).*/\1disabled/' /etc/selinux/config selinuxenabled && sudo setenforce 0 fi #### rerun my fai-time scripts # already ran for pxe installs, but used for vps & updates distro=$(distro-name) case $distro in ubuntu|debian|trisquel) sudo bash -c ". /a/bin/fai/fai-wrapper && /a/bin/fai/fai/config/scripts/GRUB_PC/11-iank" ;; *) sudo bash -c ". /a/bin/fai/fai-wrapper && /a/bin/fai/fai/config/distro-install-common/end" ;; esac ###### setup hostname sudo $sed -i '/^127\.0\.1\.1/d' /etc/hosts echo "127.0.1.1 $HOSTNAME.b8.nz $HOSTNAME" | sudo tee -a /etc/hosts ##### exit first stage if running as root if [[ $EUID == 0 ]]; then echo "$0: running as root. exiting now that users are setup" exit 0 fi #### setup bash for root for x in /a/c/{.bashrc,brc,.bash_profile,.profile,.inputrc,path_add_function}; do sudo -i </dev/null || sudo groupadd -r bind fi # this needs to be before installing pacserve so we have gpg conf. conflink ###### bash environment setup set +x err-allow source /etc/profile.d/environment.sh source ~/.bashrc err-catch $interactive || set -x #### setup passwordless sudo tu /etc/sudoers <$x sudo dd of=/etc/pacman.conf if=$x; rm $x sudo systemctl enable pacserve.service sudo systemctl start pacserve.service fi #### update all packages pup ###### p1 packages install ###### if isarch; then # requirement for trash-cli. # background: strange error if just installing trash-cli: "pyalpm requires python", # so I see that it requires python2, and installing that manually fixes it. # I didn\'t see this on earlier installation, main thing which changed was # pacserve, so not sure if it\'s related. pi python2 fi pi ${p1[@]} ######## fix evbug bug ###### case $distro in trisquel|ubuntu) # noticed in flidas. #https://bugs.launchpad.net/ubuntu/+source/module-init-tools/+bug/240553 #https://wiki.debian.org/KernelModuleBlacklisting #common advice when searching is to use /etc/modprobe.d/blacklist.conf, #but that file won't work and will get automatically reverted sudo rmmod evbug ||: # might not be loaded yet file=/etc/modprobe.d/evbug.conf line="blacklist evbug" if ! grep -xFq "$line" $file; then sudo dd of=$file 2>/dev/null <<<"$line" sudo depmod -a sudo update-initramfs -u fi ;; esac ###### link files # convenient to just do all file linking in one place s lnf -T /a/bin /b s lnf -T /nocow/t /t if has_p; then lnf -T /p/News ~/News fi s lnf /q/root/.editor-backups /q/root/.undo-tree-history \ /a/opt /a/c/.emacs.d $HOME/mw_vars /k/backup /root pi rsync # needed for rootsshsync /a/bin/ds/install-my-scripts # needed for rootsshsync rootsshsync s lnf /a/c/.vim /a/c/.vimrc /a/c/.gvimrc /root if has_p; then # for dovecot lnf -T /i/k/mboxes ~/mail fi ##### install xinput if has_x; then case $(distro-name) in trisquel|ubuntu|debian) pi xinput ;; fedora) pi xinput_calibrator ;; arch) pi xorg-xinput ;; esac #### install redshift case $(distro-name) in trisquel|ubuntu|debian) # recommends gets us geoclue (for darkening automatically at night i assume), # which recommends modemmanager, which is annoying to fix for the model01 keyboard. pi --no-install-recommends gtk-redshift ;;& fedora) pi redshift-gtk ;;& arch) pi redshift ;;& esac fi #### arch specific early packages case $(distro-name) in arch) # pkgfile is like apt-cache pi pkgfile s pkgfile --update ;; esac #### fedora specific packages case $(distro-name) in fedora) # todo, this could probably come later p -y groupinstall development-tools c-development books admin-tools pi man-pages ;; # other distros unknown esac #### enable trim # enable trim for volume delete, other rare commands sudo $sed -ri 's/( *issue_discards\b).*/\1 = 1/' /etc/lvm/lvm.conf if encrypted; then if isdeb; then sudo cp /usr/share/doc/util-linux/examples/fstrim.{service,timer} /etc/systemd/system fi # does weekly trim sudo systemctl enable fstrim.timer fi ##### make extra dirs dirs=(/mnt/{1,2,3,4,5,6,7,8,9} /nocow/t) s mkdir -p "${dirs[@]}" s chown $USER:$USER "${dirs[@]}" ###### setup /i tu /etc/fstab <<'EOF' /i/w /w none bind,noauto 0 0 /i/k /k none bind,noauto 0 0 EOF if ! mountpoint /kr; then s mkdir -p /kr s chown $USER:traci /kr fi if home_network; then if [[ $HOSTNAME == frodo ]]; then tu /etc/fstab <<'EOF' /k /kr none bind,noauto 0 0 EOF else tu /etc/fstab <<'EOF' frodo:/k /kr nfs noauto 0 0 EOF fi fi s mkdir -p /q /i/{w,k} for dir in /{i,w,k}; do if mountpoint $dir; then continue; fi # already mounted s mkdir -p $dir s chown $USER:$USER $dir done # not needed for all hosts, but rather just keep it uniform s mkdir -p /mnt/iroot # debian auto mounting of multi-disk encrypted btrfs is busted. It is # in jessie, and in stretch as of 11/26/2016 I have 4 disks in cryptab, # based on 3 of those, it creates .device units for /dev/mapper/dev... # then waits endlessly for them on bootup, after the /dev/mapper disks # have already been created and exist. todo: create a simple repro # for this in a vm and report it upstream. if has_btrfs || home_network; then pi nfs-common s dd of=/root/imount <<'EOF' #!/bin/bash [[ $EUID == 0 ]] || exec sudo -E "$BASH_SOURCE" "$@" set -eE -o pipefail trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR for dir in /i /mnt/iroot /k /kr /w; do if ! mountpoint $dir &>/dev/null && \ awk '{print $2}' /etc/fstab | grep -xF $dir &>/dev/null; then if awk '{print $3}' /etc/fstab | grep -xF nfs &>/dev/null; then mount $dir || echo "warning: failed to mount nfs on $dir" else mount $dir fi fi done EOF s chmod +x /root/imount s dd of=/etc/systemd/system/imount.service <