lots of fixes
[distro-setup] / myunison
index 68ec7d4ff72d3a7556e240e6272af3ff3bc7d2f0..506e9c6237cc0857ed662678efc2f6fc8f0f7696 100755 (executable)
--- a/myunison
+++ b/myunison
@@ -3,17 +3,36 @@
 set -eE -o pipefail
 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
 
+# note, we could have done machine specific subvols,
+# but there were so few files, it just didn't seem
+# necessary to have an rw copy on those machines
+# which did not have the whole p subvol.
+
 gen_args=()
-do_snapshot=true
+do_snapshot=false
+batch=false
 while [[ $1 ]]; do
     case $1 in
-        -n) do_snapshot=false; shift ;;
+        -ob) gen_args+=(--ours -b); batch=true; shift ;;
+        -b) gen_args+=(-b); batch=true; shift ;;
+        -n) do_snapshot=true; shift ;;
+        -h|--help)
+            echo "$0: help is head of $BASH_SOURCE:"
+            head -n 30 "$BASH_SOURCE"
+            exit 0
+            ;;
         --) shift; break ;;
         -*) gen_args+=($1) ; shift ;;
         *) host=$1; shift ;;
     esac
 done
+if [[ ! $host ]]; then
+    host=$1
+fi
 
+if [[ $host == demohost ]]; then
+    do_snapshot=false
+fi
 
 # arch and debian don't play nice with unison.
 # "connection lost" on unison-gtk, with bignum errs in term,
@@ -24,6 +43,7 @@ done
 # However, I got a gtk error running the ui version.
 # todo: I should test pushing my unison version instead
 # of pulling it.
+echo "$0: running: gen ${gen_args[@]}"
 /p/c/subdir_files/.unison/gen ${gen_args[@]}
 if [[ ! $host ]]; then
     echo "$0: error: expected argument for hostname"
@@ -33,14 +53,19 @@ fi
 
 # todo: this doesn't deal with if the host is running arch too
 
-# note, without bash, it prints some crap about tty
-# on an uncustomized jessie install.
-scp /usr/bin/unison root@$host:/usr/local/bin
+# debian uses this path, and has gtk version linked as /usr/bin/unison,
+# but I'd rather not push the gtk version
+push_path=/usr/bin/unison-latest-stable
+if [[ ! -e $push_path ]]; then
+    push_path=/usr/bin/unison
+fi
+# note, i'd prefer to use /usr/local/bin, but it's not in arch's default
+# path for root.
+rsync -L /usr/bin/unison-latest-stable root@$host:/usr/bin/unison
 
-echo "$0: egen args ${gen_args[@]}"
 if $do_snapshot; then
     unison-snapshot
-    if ! ssh root@$host unison-snapshot; then
+    if ! ssh root@$host "! type unison-snapshot || unison-snapshot"; then
         if [[ ! ${gen_args[@]} ]]; then
             # gen_args are all about syncing with new systems where
             # we could expect the remote snapshot to not be available yet.
@@ -50,9 +75,15 @@ if $do_snapshot; then
     fi
 fi
 
-f=unison-gtk
-type -t $f &>/dev/null || f=unison-gtk2 # for arch
-if s $f "$host"; then
+if $batch; then
+    # todo, figure out what the cli version is called in non-debian distros
+    f=unison-latest-stable
+else
+    f=unison-gtk
+    type -t $f &>/dev/null || f=unison-gtk2 # for arch
+fi
+
+if s $f  "$host"; then
     if [[ $host == frodo ]]; then
         # only send data to the machine i do full backups to
         p=/p/c/machine_specific/$HOSTNAME/.unison/