diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-04-04 13:22:06 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-04-04 13:22:06 -0400 |
commit | 969aac2e95d4cb202450726cf0b7d4b16fba4211 (patch) | |
tree | 8dc658a29a90164380c3021a43729427e2305d96 /setup.py | |
parent | b47e48251878e92931d06288c5e964041699f7e0 (diff) | |
download | vyos-cloud-init-969aac2e95d4cb202450726cf0b7d4b16fba4211.tar.gz vyos-cloud-init-969aac2e95d4cb202450726cf0b7d4b16fba4211.zip |
move Z99-cloud-locale-test.sh out of profile.d to tools
Just to avoid an entry in top level directory, get rid of profile.d there
and instead move Z99-cloud-locale-test.sh -> tools/Z99-cloud-locale-test.sh
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,6 +47,6 @@ setup(name='cloud-init', ('/usr/share/doc/cloud-init', filter(is_f,glob('doc/*'))), ('/usr/share/doc/cloud-init/examples', filter(is_f,glob('doc/examples/*'))), ('/usr/share/doc/cloud-init/examples/seed', filter(is_f,glob('doc/examples/seed/*'))), - ('/etc/profile.d', filter(is_f,glob('profile.d/*'))) + ('/etc/profile.d', ['tools/Z99-cloud-locale-test.sh']), ], ) |