]> git.ipfire.org Git - thirdparty/lxc.git/commit
Use POSIX-compliant function names in bash completion
authorLucas Werkmeister <mail@lucaswerkmeister.de>
Thu, 14 May 2015 20:12:52 +0000 (22:12 +0200)
committerStéphane Graber <stgraber@ubuntu.com>
Fri, 14 Aug 2015 17:09:49 +0000 (13:09 -0400)
commit17e7717832357eda49a1ae3c13d7e9bf67f48312
tree02b23fbaef7c8b5b39d86fa95787f65490c1cb04
parent66a3aec9714ea21d7e0b5569518a5eccffa20253
Use POSIX-compliant function names in bash completion

When running in posix mode (for example, because it was invoked as `sh`,
or with the --posix option), bash rejects the function names previously
used because they contain hyphens, which are not legal POSIX names, and
exits immediately.

This is a particularly serious problem on a system in which the
following three conditions hold:

1. The `sh` executable is provided by bash, e. g. via a symlink
2. Gnome Display Manager is used to launch X sessions
3. Bash completion is loaded in the (system or user) profile file
   instead of in the bashrc file

In that case, GDM's Xsession script (run with `sh`, i. e., bash in posix
mode) sources the profile files, thus causing the shell to load the bash
completion files. Upon encountering the non-POSIX-compliant function
names, bash would then exit, immediately ending the X session.

Fixes #521.

Signed-off-by: Lucas Werkmeister <mail@lucaswerkmeister.de>
config/bash/lxc.in