From 947d3c20891815f164f4c7a8884d1f02ae4a9c5b Mon Sep 17 00:00:00 2001 From: Daniel Watkins Date: Thu, 18 Apr 2019 19:05:33 +0000 Subject: [PATCH] setup.py: install bash completion script in new location Per lintian, this is the path at which bash completion scripts should now be installed. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 186e215fc1b..fcaf26ffc2c 100755 --- a/setup.py +++ b/setup.py @@ -245,13 +245,14 @@ def finalize_options(self): INITSYS_ROOTS[k] = "/" + INITSYS_ROOTS[k] data_files = [ - (ETC + '/bash_completion.d', ['bash_completion/cloud-init']), (ETC + '/cloud', [render_tmpl("config/cloud.cfg.tmpl")]), (ETC + '/cloud/cloud.cfg.d', glob('config/cloud.cfg.d/*')), (ETC + '/cloud/templates', glob('templates/*')), (USR_LIB_EXEC + '/cloud-init', ['tools/ds-identify', 'tools/uncloud-init', 'tools/write-ssh-key-fingerprints']), + (USR + '/share/bash-completion/completions', + ['bash_completion/cloud-init']), (USR + '/share/doc/cloud-init', [f for f in glob('doc/*') if is_f(f)]), (USR + '/share/doc/cloud-init/examples', [f for f in glob('doc/examples/*') if is_f(f)]),