Add a default flag file for nova-manage to help it find the CA.

This commit is contained in:
Soren Hansen 2010-07-06 17:34:43 +02:00
parent fa529458f6
commit ccd01c6975
4 changed files with 7 additions and 1 deletions

View File

@ -218,7 +218,7 @@ def methods_of(obj):
if __name__ == '__main__':
utils.default_flagfile()
utils.default_flagfile('/etc/nova-manage.conf')
argv = FLAGS(sys.argv)
script_name = argv.pop(0)
if len(argv) < 1:

1
debian/changelog vendored
View File

@ -3,6 +3,7 @@ nova (0.3.0+really0.2.2-0ubuntu0ppa3) UNRELEASED; urgency=low
* Add a dependency on nginx from nova-objectsstore and install a
suitable configuration file.
* Ship the CA directory in nova-common.
* Add a default flag file for nova-manage to help it find the CA.
-- Soren Hansen <soren@ubuntu.com> Tue, 06 Jul 2010 13:33:44 +0200

View File

@ -1,4 +1,5 @@
bin/nova-manage usr/bin
debian/nova-manage.conf etc
nova/auth/novarc.template usr/share/nova
nova/cloudpipe/client.ovpn.template usr/share/nova
nova/compute/libvirt.xml.template usr/share/nova

4
debian/nova-manage.conf vendored Normal file
View File

@ -0,0 +1,4 @@
--ca_path=/var/lib/nova/CA
--credentials_template=/usr/share/nova/novarc.template
--keys_path=/var/lib/nova/keys
--vpn_client_template=/usr/share/nova/client.ovpn.template