]> git.donarmstrong.com Git - bin.git/blobdiff - update_mobile_org
add reset usb bus command
[bin.git] / update_mobile_org
index e9af90c88b6807d2e82691a370355ec0ad2ae4ae..b124ffd9ea8b1de85fe248864710e6ea4cec5fd8 100755 (executable)
@@ -1,9 +1,11 @@
 #!/bin/bash
 
+GIT_HOST="linnode"
+
 HOSTNAME=$(hostname)
 TMPDIR=~/tmp
 export TMPDIR
-if [ -e ~/.ssh/ssh_agent_info_${HOSTNAME} ]; then
+if [ -e ~/.ssh/ssh_agent_info_${HOSTNAME} ]; then
     . ~/.ssh/ssh_agent_info_${HOSTNAME}
 fi;
 LOCKOPTS=-q
@@ -14,7 +16,7 @@ fi;
 LOCKIT="with-lock-ex $LOCKOPTS $LOCKFILE"
 TIMEOUT="timeout -k1m 1m"
 ${LOCKIT} ${TIMEOUT} mr -d ~/org-mode up;
-if [ "$HOSTNAME" = "linnode" ]; then
+if [ "$HOSTNAME" = "$GIT_HOST" ]; then
     ${LOCKIT} ${TIMEOUT} mr -d ~/projects/org-notes up;
 else
     ${LOCKIT} ${TIMEOUT} emacsclient -n -e '(org-save-all-org-buffers)' >/dev/null 2>&1;
@@ -22,7 +24,7 @@ fi;
 yes|${LOCKIT} timeout -k1m 5m emacs --batch -l ~/.emacs \
                  --eval '(org-mobile-push)' --eval '(org-mobile-pull)' --eval '(org-save-all-org-buffers)';
 
-if [ "$HOSTNAME" = "rzlab" ]; then
+if [ "$HOSTNAME" = "$GIT_HOST" ]; then
     ${LOCKIT} ${TIMEOUT} \
                  mr -d ~/projects/org-notes commit -m'org mobile automated commit and push';
 fi;