diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-01-19 03:49:51 +0000 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-01-19 03:49:51 +0000 |
commit | 8fbafbddbfbdddcb0a3e087185e432973ac73baa (patch) | |
tree | ea53a54e70a0e1a147d16df1c399feb4077e695c /setup.py | |
parent | ad5dba4b93f7e45c741f73f88cde1fd0bb59f896 (diff) | |
download | vyos-cloud-init-8fbafbddbfbdddcb0a3e087185e432973ac73baa.tar.gz vyos-cloud-init-8fbafbddbfbdddcb0a3e087185e432973ac73baa.zip |
move writing of ssh key fingerprints to a separate tool
This will allow this code to be called more easily elsewhere.
I'm considering having the "all the way up" message contain fingerprints
so that they're more or less guaranteed to get to the console where
the user could see them.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -41,7 +41,8 @@ setup(name='cloud-init', ('/etc/cloud/templates', glob('templates/*')), ('/etc/init', glob('upstart/*.conf')), ('/usr/share/cloud-init', []), - ('/usr/lib/cloud-init', ['tools/uncloud-init']), + ('/usr/lib/cloud-init', + ['tools/uncloud-init', 'tools/write-ssh-key-fingerprints']), ('/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/*'))), |