Adds missing CONF.import_opt in password plugin

The "username" option was not imported in the password
plugin.
This commit is contained in:
Alessandro Pilotti 2014-02-19 19:08:33 +02:00
parent 14fca5ca4e
commit 5084e3e3bd

View File

@ -32,6 +32,7 @@ opts = [
CONF = cfg.CONF
CONF.register_opts(opts)
CONF.import_opt('username', 'cloudbaseinit.plugins.windows.createuser')
LOG = logging.getLogger(__name__)