Last month I manually patched bash on a server running ubuntu 11.10 for the shellshock bug, as suggested in the comments here: What is the CVE-2014-6271 bash vulnerability (Shellshock) and how do I fix it?. I've now done a release-upgrade to 12.04 which is supported. How should I uninstall the patch and restore bash to be apt maintained?
edit:
running make uninstall
on the patch did the job, thanks @muru for the suggestion
/bin/bash
will open the apt-installed version, justbash
will open/usr/local/bin/bash
, as/usr/local/bin
has higher precedence in the PATH. I think you can trymake uninstall
, or other steps from http://stackoverflow.com/q/1439950/2072269 – muru Oct 09 '14 at 10:41echo $BASH_VERSION
has provided a false signal in this case. I'll have a look atmake uninstall
in my virtual machine testbed. – Matt South Oct 09 '14 at 10:52