]> 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>
Wed, 1 Jul 2015 16:06:42 +0000 (12:06 -0400)
commitea26a2c925807a70bf3eba2735ef3fa95dc60be5
treeb46a551101761c96b5a18367cdf1bcdefe1cc41b
parentb76ccb19507f78144608ff43e328d6da0ee166cd
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