Move independent repo myunison into this repo
[distro-setup] / conflink
1 #!/bin/bash
2
3 source /a/bin/errhandle/errcatch-function
4 source /a/bin/errhandle/bash-trace-function
5
6 errcatch
7
8 m() {
9 echo "$*"
10 "$@"
11 }
12 s() { sudo "$@"; }
13 lnf() { /a/exe/lnf "$@"; }
14
15
16 shopt -s nullglob
17 shopt -s extglob # note, already set with bash -l
18
19 # If we make a link back to the root, we stop going deeper into subdir_files.
20 # This makes it so we can do subdir directories.
21 #
22 # Also note, under filesystem/, symlinks are expanded.
23
24 subdir-link-r() {
25 local root="$1"
26 local targets=()
27 if [[ $2 ]]; then
28 targets=( "$2"/!(.git|..|.) )
29 else
30 for f in "$1"/!(.git|..|.); do
31 [[ -d $f ]] && targets+=("$f") ||:
32 done
33 fi
34 local below="$( readlink -f "$root/..")"
35 for path in "${targets[@]}"; do
36 local fullpath="$(readlink -f "$path")"
37 #e $fullpath $below # debug
38 if [[ -f $path || $(dirname $(readlink -f "$fullpath")) == "$below" ]]; then
39 m lnf -T "$path" "$HOME/${path#$root/}"
40 elif [[ -d "$path" ]]; then
41 subdir-link-r "$root" "$path"
42 fi
43 done
44 }
45
46 common-file-setup() {
47 local dir fs x
48 for dir in "$@"; do
49 fs=$dir/filesystem
50 if [[ -e $fs && $USER == ian ]]; then
51 # note, symlinks get resolved, not copied.
52 m s cp -RLT --preserve=mode,timestamps $fs /
53 fi
54 if [[ -e $dir/subdir_files ]]; then
55 subdir-link-r $dir/subdir_files
56 fi
57 local x=( $dir/!(subdir_files|filesystem|machine_specific|..|.) )
58 (( ${#x[@]} >= 1 )) || continue
59 m lnf ${x[@]} ~
60 done
61 }
62
63 all_dirs=({/a/c,/p/c}{,/machine_specific/$HOSTNAME})
64 # note, we assume a group of hosts does not have the
65 # same name as a single host, which is no problem on our scale.
66 for x in /p/c/machine_specific/*.hosts; do
67 if grep -qxF $HOSTNAME $x; then all_dirs+=( ${x%.hosts} ); fi
68 done
69
70 c_dirs=(/a/c{,/machine_specific/$HOSTNAME})
71 case $USER in
72 ian)
73 # p needs to go first so .ssh link is created, then config link inside it
74 common-file-setup ${all_dirs[@]}
75 sudo -u traci "$BASH_SOURCE"
76 ;;
77 traci)
78 common-file-setup ${c_dirs[@]}
79 ;;
80 *)
81 echo "$0: error: unexpected user"; exit 1
82 ;;
83 esac