From d010e13839674e0a0d957f85591995c4a9bf79d8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mario=20H=C3=B6llein?= Date: Mon, 1 Apr 2019 04:27:50 +0200 Subject: [PATCH] saving uncommitted changes in /etc prior to apt run --- .etckeeper | 1 - bash_completion.d/pass-otp | 26 -------------------------- 2 files changed, 27 deletions(-) delete mode 100644 bash_completion.d/pass-otp diff --git a/.etckeeper b/.etckeeper index 5f8e52d..3216ffb 100755 --- a/.etckeeper +++ b/.etckeeper @@ -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 index 5b13dcc..0000000 --- a/bash_completion.d/pass-otp +++ /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 -} -- 2.43.0