#!/bin/bash -l set -eE -o pipefail trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?"' ERR sysv() { echo "$@" "$@" } # shopt -s nullglob shopt -s extglob # note, already set with bash -l # if we make a link back to the root, traversing the subdirs stops. # This makes it so we can do subdir directories. Must call with absolute # paths. subdir-link-r() { local root="$1" local targets=() if [[ $2 ]]; then targets=( "$2"/!(.git|..|.) ) else for f in "$1"/!(.git|..|.); do [[ -d $f ]] && targets+=("$f") ||: done fi local below="$( readlink -f "$root/..")" for path in "${targets[@]}"; do local fullpath="$(readlink -f "$path")" #e $fullpath $below # debug if [[ -f $path || $(dirname $(readlink -f "$fullpath")) == "$below" ]]; then sysv lnf -T "$path" "$HOME/${path#$root/}" elif [[ -d "$path" ]]; then subdir-link-r "$root" "$path" fi done } common-file-setup() { local dir fs_files x for dir in "$@"; do fs_files=( $dir/filesystem/* ) if [[ -e ${fs_files[0]} && $USER == ian ]]; then # note, symlinks get resolved, not copied. sysv s cp -RL ${fs_files[@]} / fi if [[ -e $dir/subdir_files ]]; then subdir-link-r $dir/subdir_files fi local x=( $dir/!(subdir_files|filesystem|machine_specific) ) (( ${#x[@]} >= 1 )) || continue sysv lnf ${x[@]} ~ done } all_dirs=({/a/c,/p/c}{,/machine_specific/$HOSTNAME}) c_dirs=(/a/c{,/machine_specific/$HOSTNAME}) case $USER in ian) # p needs to go first so .ssh link is created, then config link inside it common-file-setup ${all_dirs[@]} sudo -u traci "$BASH_SOURCE" ;; traci) common-file-setup ${c_dirs[@]} ;; *) echo "$0: error: unexpected user"; exit 1 ;; esac