tod: add tod wrapper for giggi.me
diff --git a/PASSWD b/PASSWD
new file mode 100644
index 0000000..501964d
--- /dev/null
+++ b/PASSWD
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+___port_=2222
+___host_=localhost
+___user_=luigi
+___pswd_=/home/luigi/hdd00/giggi.me/tod/PASSWD2
+
+PASSWORDS="$(ssh -p $___port_ $___user_@$___host_ "cat $___pswd_")"
+
+eval "$PASSWORDS"
diff --git a/tod.giggi.me b/tod.giggi.me
new file mode 100755
index 0000000..5758bb8
--- /dev/null
+++ b/tod.giggi.me
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+if (return 0 2>/dev/null); then
+    echo "Do not source, instead run ${BASH_SOURCE[0]}" >&2
+else
+    set -x
+    export INSTANCE_MODE="release"
+    export HOST_NAME="giggi.me"
+    export INSTANCE_DIR="/home/luigi/$HOST_NAME"
+    export PASSWD_F="/home/luigi/tod/PASSWD"
+    set +x
+
+    case "$1" in
+	cli-compose ) shift
+		      pushd $INSTANCE_DIR >/dev/null
+		      ./compose-cli.sh ${@}
+		      popd >/dev/null
+		      ;;
+
+	cli-dc      ) shift
+		      pushd $INSTANCE_DIR >/dev/null
+		      source $PASSWD_F
+		      sudo -E docker-compose ${@}
+		      popd >/dev/null
+		      ;;
+
+	tod         ) shift
+		      ./tod ${@}
+		      ;;
+
+	cli-gerrit  ) shift
+		      $INSTANCE_DIR/docker/gerrit/gerrit-cli.sh ${@}
+                      ;;
+
+	cli-mysql   ) shift
+		      $INSTANCE_DIR/docker/mysql/mysql-cli.sh ${@}
+		      ;;
+    esac
+fi