From: Oleg Broytman Date: Wed, 12 Aug 2020 07:18:59 +0000 (+0300) Subject: Fix bash completion for OpenVPN X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=commitdiff_plain;h=ca52a357ad9e624378caee238d321aae3225134b Fix bash completion for OpenVPN --- diff --git a/.bash_completion.d/openvpn b/.bash_completion.d/openvpn new file mode 100644 index 0000000..02d604d --- /dev/null +++ b/.bash_completion.d/openvpn @@ -0,0 +1,5 @@ +# Fix a problem in completion; see https://unix.stackexchange.com/a/529201 + +if [ -r /usr/share/bash-completion/completions/openvpn ]; then + . /usr/share/bash-completion/completions/openvpn +fi