uccpass: use local version of PATH and pass GPG_OPTS to use trust-model=always
[zanchey/uccpass.git] / uccpass
diff --git a/uccpass b/uccpass
index 62c42e3..7f7bb9d 100755 (executable)
--- a/uccpass
+++ b/uccpass
 init () {
     # Check for pass subcommand
     if ! type pass >/dev/null; then
-        echo "$0: can't find the pass(1) command, is it installed correctly?"
+        echo "uccpass: can't find the pass(1) command, is it installed correctly?"
     fi
     if ! type gpg2 >/dev/null; then
-        echo "$0: can't find gpg2(1), is it installed correctly?"
+        echo "uccpass: can't find gpg2(1), is it installed correctly?"
     fi
 
     UCCPASS_ROOT="/home/wheel/bin/uccpass"
@@ -41,6 +41,9 @@ init () {
     export GIT_AUTHOR_NAME="`getent passwd $USER | cut -d: -f5`"
 
     export GPG_TTY=`tty`
+    export PASSWORD_STORE_GPG_OPTS="--trust-model always"
+
+    export PATH=$UCCPASS_ROOT/pass/bin:$PATH
 
     if [ -n "$UCCPASS_DEBUG" ]; then set -x; fi
 }
@@ -76,7 +79,7 @@ refresh_keys () {
 }
 
 new_user_setup () {
-    echo " >  Setting you up for $0"
+    echo " >  Setting you up for uccpass"
 
     # Set up an agent
     echo -n " >> Checking for running GPG agent... "
@@ -85,7 +88,7 @@ new_user_setup () {
         echo "not found."
         USER_SHELL=`basename $SHELL`
         if echo $USER_SHELL | egrep -q 'zsh|bash|fish'; then
-            echo " [!] $0 can install an password caching agent into your shell initialisation files."
+            echo " [!] uccpass can install an password caching agent into your shell initialisation files."
             echo -n " [?] Do you want to do so? [Y/n] " 
             read install_agent
             case $install_agent in
@@ -141,8 +144,8 @@ new_user_setup () {
     fi
 
     # Done!
-    echo " > $0 setup complete."
-    echo " [!] Ask someone with existing access to the password store to run \`$0 reload\`."
+    echo " > uccpass setup complete."
+    echo " [!] Ask someone with existing access to the password store to run \`uccpass reload\`."
 }
 
 init
@@ -161,7 +164,7 @@ case "$1" in
         ;;
     help|--help)
         command pass $@
-        echo "$0 also supports the following commands:"
+        echo "uccpass also supports the following commands:"
         echo "setup: generate a new key and insert it into the password store"
         echo "reload: re-encrypt the password store"
         ;;

UCC git Repository :: git.ucc.asn.au