]> git.hoellein.online Git - zenbook/commitdiff
saving uncommitted changes in /etc prior to apt run
authorMario Höllein <mhoellein@freenet.de>
Mon, 1 Apr 2019 02:27:50 +0000 (04:27 +0200)
committerroot <root@localhost>
Mon, 1 Apr 2019 02:27:50 +0000 (04:27 +0200)
.etckeeper
bash_completion.d/pass-otp [deleted file]

index 5f8e52d8860ae40d87cf4f7f7f863ad07767913e..3216ffbb82ff38e1d8ba6f07a20d324e108606e1 100755 (executable)
@@ -599,7 +599,6 @@ maybe chmod 0644 'bash_completion.d/insserv'
 maybe chmod 0644 'bash_completion.d/libreoffice.sh'
 maybe chmod 0644 'bash_completion.d/maven'
 maybe chmod 0644 'bash_completion.d/openvpn'
-maybe chmod 0644 'bash_completion.d/pass-otp'
 maybe chmod 0644 'bindresvport.blacklist'
 maybe chmod 0755 'binfmt.d'
 maybe chmod 0755 'bitcoin'
diff --git a/bash_completion.d/pass-otp b/bash_completion.d/pass-otp
deleted file mode 100644 (file)
index 5b13dcc..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-PASSWORD_STORE_EXTENSION_COMMANDS+=(otp)
-
-__password_store_extension_complete_otp() {
-  if [[ $COMP_CWORD -gt 2 ]]; then
-    case "${COMP_WORDS[2]}" in
-      insert|append)
-        COMPREPLY+=($(compgen -W "-e --echo -f --force -s --secret -i --issuer -a --account" -- ${cur}))
-        _pass_complete_entries
-        ;;
-      uri)
-        COMPREPLY+=($(compgen -W "-c --clip -q --qrcode" -- ${cur}))
-        _pass_complete_entries
-        ;;
-      validate)
-        _pass_complete_entries
-        ;;
-      *)
-        COMPREPLY+=($(compgen -W "-h --help" -- ${cur}))
-        _pass_complete_entries
-        ;;
-    esac
-  else
-      COMPREPLY+=($(compgen -W "insert append uri validate -h --help -c --clip" -- ${cur}))
-      _pass_complete_entries 1
-  fi
-}