Also fixes up the Debian packaging such that this works how I would want, with proper module installation while leaving everything else untouched. Finally implements automatic installation and removal of the BASH completion for the PVC command.
7 lines
123 B
Bash
7 lines
123 B
Bash
#!/bin/sh
|
|
|
|
# Remove the bash completion
|
|
if [ -f /etc/bash_completion.d/pvc ]; then
|
|
rm -f /etc/bash_completion.d/pvc
|
|
fi
|