diff --git a/README.md b/README.md index 2481910..cea6ffb 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,12 @@ Once you have this setup you must configure the charm as follow: charm. * Apply the following charm config: * remote-user: username used to access and configure the power node. - * remote-repo: Yum repository url or file url + * remote-repos: Yum repository url(s) or file url(s) * remote-hosts: IP address of power node * Example: ``` remote-user: youruser - remote-repo: file:///tmp/openstack-iso/openstack,file:///tmp/other-iso/repofs + remote-repos: file:///tmp/openstack-iso/openstack,file:///tmp/other-iso/repofs remote-key: id_dsa remote-hosts: 10.10.10.10 10.10.10.11 ``` diff --git a/config.yaml b/config.yaml index b875918..ecf4c10 100644 --- a/config.yaml +++ b/config.yaml @@ -11,7 +11,7 @@ options: type: string default: description: SSH key to use to access remote compute nodes. - remote-repo: + remote-repos: type: string default: description: Comma separated list of RPM repositorys of OpenStack packages to deploy to remote compute nodes. diff --git a/hooks/nova_compute_hooks.py b/hooks/nova_compute_hooks.py index 946fcb3..8b6e7ab 100755 --- a/hooks/nova_compute_hooks.py +++ b/hooks/nova_compute_hooks.py @@ -43,7 +43,7 @@ CONFIGS = register_configs() proxy = REMOTEProxy(user=config('remote-user'), ssh_key=config('remote-key'), hosts=config('remote-hosts'), - repository=config('remote-repo'), + repository=config('remote-repos'), password=config('remote-password'))