diff --git a/resources/data_container/actions/echo.yml b/resources/data_container/actions/echo.yml index 59b540a..affdbef 100644 --- a/resources/data_container/actions/echo.yml +++ b/resources/data_container/actions/echo.yml @@ -1,5 +1,5 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - shell: echo `/sbin/ifconfig` diff --git a/resources/data_container/actions/remove.yml b/resources/data_container/actions/remove.yml index 84c60ef..50b041f 100644 --- a/resources/data_container/actions/remove.yml +++ b/resources/data_container/actions/remove.yml @@ -1,5 +1,5 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - shell: docker stop {{ resource_name }} diff --git a/resources/data_container/actions/run.yml b/resources/data_container/actions/run.yml index 76832eb..b61979e 100644 --- a/resources/data_container/actions/run.yml +++ b/resources/data_container/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - docker: diff --git a/resources/docker/actions/run.yml b/resources/docker/actions/run.yml index 549c73b..4d582f8 100644 --- a/resources/docker/actions/run.yml +++ b/resources/docker/actions/run.yml @@ -1,5 +1,5 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - shell: docker --version diff --git a/resources/docker_container/actions/remove.yml b/resources/docker_container/actions/remove.yml index 84c60ef..50b041f 100644 --- a/resources/docker_container/actions/remove.yml +++ b/resources/docker_container/actions/remove.yml @@ -1,5 +1,5 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - shell: docker stop {{ resource_name }} diff --git a/resources/docker_container/actions/run.yml b/resources/docker_container/actions/run.yml index c422ed1..49e7367 100644 --- a/resources/docker_container/actions/run.yml +++ b/resources/docker_container/actions/run.yml @@ -1,5 +1,5 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - docker: diff --git a/resources/glance_api_service/actions/remove.yml b/resources/glance_api_service/actions/remove.yml index 41bb974..9b145ab 100644 --- a/resources/glance_api_service/actions/remove.yml +++ b/resources/glance_api_service/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: glance api container diff --git a/resources/glance_api_service/actions/run.yml b/resources/glance_api_service/actions/run.yml index 95b2e30..7a5b8be 100644 --- a/resources/glance_api_service/actions/run.yml +++ b/resources/glance_api_service/actions/run.yml @@ -1,5 +1,5 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - docker: diff --git a/resources/glance_config/actions/remove.yml b/resources/glance_config/actions/remove.yml index a0a79ad..95cf18d 100644 --- a/resources/glance_config/actions/remove.yml +++ b/resources/glance_config/actions/remove.yml @@ -1,5 +1,5 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - shell: echo 'removed' diff --git a/resources/glance_config/actions/run.yml b/resources/glance_config/actions/run.yml index e289948..bc26552 100644 --- a/resources/glance_config/actions/run.yml +++ b/resources/glance_config/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes vars: ip: {{ ip }} @@ -26,12 +26,12 @@ - file: path={{ config_dir.value['src'] }}/policy.json state=touch - file: path={{ config_dir.value['src'] }}/schema-image.json state=touch - file: path={{ config_dir.value['src'] }}/exports state=touch - - template: src={{ resource_dir }}/templates/glance-api.conf dest={{ config_dir.value['src'] }}/glance-api.conf - - template: src={{ resource_dir }}/templates/glance-api-paste.ini dest={{ config_dir.value['src'] }}/glance-api-paste.ini - - template: src={{ resource_dir }}/templates/glance-cache.conf dest={{ config_dir.value['src'] }}/glance-cache.conf - - template: src={{ resource_dir }}/templates/glance-registry.conf dest={{ config_dir.value['src'] }}/glance-registry.conf - - template: src={{ resource_dir }}/templates/glance-registry-paste.ini dest={{ config_dir.value['src'] }}/glance-registry-paste.ini - - template: src={{ resource_dir }}/templates/glance-scrubber.conf dest={{ config_dir.value['src'] }}/glance-scrubber.conf - - template: src={{ resource_dir }}/templates/policy.json dest={{ config_dir.value['src'] }}/policy.json - - template: src={{ resource_dir }}/templates/schema-image.json dest={{ config_dir.value['src'] }}/schema-image.json - - template: src={{ resource_dir }}/templates/exports dest={{ config_dir.value['src'] }}/glance-export + - template: src={{templates_dir}}/glance-api.conf dest={{ config_dir.value['src'] }}/glance-api.conf + - template: src={{templates_dir}}/glance-api-paste.ini dest={{ config_dir.value['src'] }}/glance-api-paste.ini + - template: src={{templates_dir}}/glance-cache.conf dest={{ config_dir.value['src'] }}/glance-cache.conf + - template: src={{templates_dir}}/glance-registry.conf dest={{ config_dir.value['src'] }}/glance-registry.conf + - template: src={{templates_dir}}/glance-registry-paste.ini dest={{ config_dir.value['src'] }}/glance-registry-paste.ini + - template: src={{templates_dir}}/glance-scrubber.conf dest={{ config_dir.value['src'] }}/glance-scrubber.conf + - template: src={{templates_dir}}/policy.json dest={{ config_dir.value['src'] }}/policy.json + - template: src={{templates_dir}}/schema-image.json dest={{ config_dir.value['src'] }}/schema-image.json + - template: src={{templates_dir}}/exports dest={{ config_dir.value['src'] }}/glance-export diff --git a/resources/glance_registry_service/actions/remove.yml b/resources/glance_registry_service/actions/remove.yml index 185b1ee..b73c63a 100644 --- a/resources/glance_registry_service/actions/remove.yml +++ b/resources/glance_registry_service/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: glance registry container diff --git a/resources/glance_registry_service/actions/run.yml b/resources/glance_registry_service/actions/run.yml index ae76d9d..c5a6801 100644 --- a/resources/glance_registry_service/actions/run.yml +++ b/resources/glance_registry_service/actions/run.yml @@ -1,5 +1,5 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - docker: diff --git a/resources/haproxy_config/actions/remove.yml b/resources/haproxy_config/actions/remove.yml index f6c1f6e..3e05d9c 100644 --- a/resources/haproxy_config/actions/remove.yml +++ b/resources/haproxy_config/actions/remove.yml @@ -1,5 +1,5 @@ # TODO -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - file: path={{ config_dir.value['src'] }} state=absent diff --git a/resources/haproxy_config/actions/run.yml b/resources/haproxy_config/actions/run.yml index 60b6e23..9ab8a09 100644 --- a/resources/haproxy_config/actions/run.yml +++ b/resources/haproxy_config/actions/run.yml @@ -1,5 +1,5 @@ # TODO -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes vars: config_dir: {src: {{ config_dir.value['src'] }}, dst: {{ config_dir.value['dst'] }}} @@ -19,4 +19,4 @@ tasks: - file: path={{ config_dir.value['src'] }}/ state=directory - file: path={{ config_dir.value['src'] }}/haproxy.cfg state=touch - - template: src={{ resource_dir }}/templates/haproxy.cfg dest=/etc/haproxy/haproxy.cfg + - template: src={{templates_dir}}/haproxy.cfg dest=/etc/haproxy/haproxy.cfg diff --git a/resources/haproxy_config/actions/update.yml b/resources/haproxy_config/actions/update.yml index 318b779..474ee62 100644 --- a/resources/haproxy_config/actions/update.yml +++ b/resources/haproxy_config/actions/update.yml @@ -19,4 +19,4 @@ tasks: - file: path={{ config_dir.value['src'] }}/ state=directory - file: path={{ config_dir.value['src'] }}/haproxy.cfg state=touch - - template: src={{ resource_dir }}/templates/haproxy.cfg dest=/etc/haproxy/haproxy.cfg + - template: src={{templates_dir}}/haproxy.cfg dest=/etc/haproxy/haproxy.cfg diff --git a/resources/haproxy_service/actions/install.yml b/resources/haproxy_service/actions/install.yml new file mode 100644 index 0000000..6817374 --- /dev/null +++ b/resources/haproxy_service/actions/install.yml @@ -0,0 +1,10 @@ +- hosts: [{{host}}] + sudo: yes + tasks: + - apt: + name: haproxy + state: present + - replace: + dest: '/etc/default/haproxy' + regexp: ENABLED=0 + replace: ENABLED=1 diff --git a/resources/haproxy_service/actions/remove.yml b/resources/haproxy_service/actions/remove.yml index 3125c27..ce6e8b8 100644 --- a/resources/haproxy_service/actions/remove.yml +++ b/resources/haproxy_service/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: haproxy container diff --git a/resources/haproxy_service/actions/run.yml b/resources/haproxy_service/actions/run.yml index 91a7795..6817374 100644 --- a/resources/haproxy_service/actions/run.yml +++ b/resources/haproxy_service/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - apt: diff --git a/resources/haproxy_service/actions/update.yml b/resources/haproxy_service/actions/update.yml index f9feeab..6f91682 100644 --- a/resources/haproxy_service/actions/update.yml +++ b/resources/haproxy_service/actions/update.yml @@ -1,5 +1,5 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - service: diff --git a/resources/hosts_file/actions/run.yml b/resources/hosts_file/actions/run.yml index abb3b5b..61876e0 100644 --- a/resources/hosts_file/actions/run.yml +++ b/resources/hosts_file/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: {{ip}} +- hosts: [{{host}}] sudo: yes tasks: {% for ip, host in zip(hosts_ips.value, hosts_names.value) %} diff --git a/resources/keystone_config/actions/remove.yml b/resources/keystone_config/actions/remove.yml index 7e452a4..48094d2 100644 --- a/resources/keystone_config/actions/remove.yml +++ b/resources/keystone_config/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - file: path={{config_dir}} state=absent diff --git a/resources/keystone_config/actions/run.yml b/resources/keystone_config/actions/run.yml index ad457c5..3265bbc 100644 --- a/resources/keystone_config/actions/run.yml +++ b/resources/keystone_config/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes vars: admin_token: {{admin_token}} @@ -10,8 +10,8 @@ db_name: {{db_name}} tasks: - file: path={{config_dir}} state=directory - - template: src={{resource_dir}}/templates/keystone.conf dest={{config_dir}}/keystone.conf - - template: src={{resource_dir}}/templates/default_catalog.templates dest={{config_dir}}/default_catalog.templates - - template: src={{resource_dir}}/templates/logging.conf dest={{config_dir}}/logging.conf - - template: src={{resource_dir}}/templates/policy.json dest={{config_dir}}/policy.json - - template: src={{resource_dir}}/templates/exports dest={{ config_dir }}/keystone-exports + - template: src={{templates_dir}}/keystone.conf dest={{config_dir}}/keystone.conf + - template: src={{templates_dir}}/default_catalog.templates dest={{config_dir}}/default_catalog.templates + - template: src={{templates_dir}}/logging.conf dest={{config_dir}}/logging.conf + - template: src={{templates_dir}}/policy.json dest={{config_dir}}/policy.json + - template: src={{templates_dir}}/exports dest={{ config_dir }}/keystone-exports diff --git a/resources/keystone_role/actions/remove.yml b/resources/keystone_role/actions/remove.yml index 2a719f4..6b723fa 100644 --- a/resources/keystone_role/actions/remove.yml +++ b/resources/keystone_role/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: keystone role diff --git a/resources/keystone_role/actions/run.yml b/resources/keystone_role/actions/run.yml index eb30523..983185d 100644 --- a/resources/keystone_role/actions/run.yml +++ b/resources/keystone_role/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: install python-keystoneclient diff --git a/resources/keystone_service/actions/remove.yml b/resources/keystone_service/actions/remove.yml index 3a3599a..73ef93a 100644 --- a/resources/keystone_service/actions/remove.yml +++ b/resources/keystone_service/actions/remove.yml @@ -1,5 +1,5 @@ # TODO -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: keystone container diff --git a/resources/keystone_service/actions/run.yml b/resources/keystone_service/actions/run.yml index bfd3703..49eb2e0 100644 --- a/resources/keystone_service/actions/run.yml +++ b/resources/keystone_service/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: keystone container diff --git a/resources/keystone_tenant/actions/remove.yml b/resources/keystone_tenant/actions/remove.yml index b19a2fc..c41de2d 100644 --- a/resources/keystone_tenant/actions/remove.yml +++ b/resources/keystone_tenant/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: keystone tenant diff --git a/resources/keystone_tenant/actions/run.yml b/resources/keystone_tenant/actions/run.yml index f9e7252..925522f 100644 --- a/resources/keystone_tenant/actions/run.yml +++ b/resources/keystone_tenant/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: install python-keystoneclient diff --git a/resources/keystone_user/actions/remove.yml b/resources/keystone_user/actions/remove.yml index 8ab1004..8748d49 100644 --- a/resources/keystone_user/actions/remove.yml +++ b/resources/keystone_user/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: keystone user diff --git a/resources/keystone_user/actions/run.yml b/resources/keystone_user/actions/run.yml index 02f2b33..ecccca5 100644 --- a/resources/keystone_user/actions/run.yml +++ b/resources/keystone_user/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: install python-keystoneclient diff --git a/resources/mariadb_db/actions/remove.yml b/resources/mariadb_db/actions/remove.yml index 2cf99c1..ca5f960 100644 --- a/resources/mariadb_db/actions/remove.yml +++ b/resources/mariadb_db/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: mariadb db diff --git a/resources/mariadb_db/actions/run.yml b/resources/mariadb_db/actions/run.yml index b8fa4c7..11adc5b 100644 --- a/resources/mariadb_db/actions/run.yml +++ b/resources/mariadb_db/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: mariadb db diff --git a/resources/mariadb_service/actions/remove.yml b/resources/mariadb_service/actions/remove.yml index 13374f7..512b8f5 100644 --- a/resources/mariadb_service/actions/remove.yml +++ b/resources/mariadb_service/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: mariadb container diff --git a/resources/mariadb_service/actions/run.yml b/resources/mariadb_service/actions/run.yml index a06cbc6..671c602 100644 --- a/resources/mariadb_service/actions/run.yml +++ b/resources/mariadb_service/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: mariadb container diff --git a/resources/mariadb_user/actions/remove.yml b/resources/mariadb_user/actions/remove.yml index cd7150c..e07cd07 100644 --- a/resources/mariadb_user/actions/remove.yml +++ b/resources/mariadb_user/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: mariadb user diff --git a/resources/mariadb_user/actions/run.yml b/resources/mariadb_user/actions/run.yml index 5fe03c4..8ae4601 100644 --- a/resources/mariadb_user/actions/run.yml +++ b/resources/mariadb_user/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - name: mariadb user diff --git a/resources/openrc_file/actions/run.yaml b/resources/openrc_file/actions/run.yaml index 510b4ca..8d0f71a 100644 --- a/resources/openrc_file/actions/run.yaml +++ b/resources/openrc_file/actions/run.yaml @@ -7,4 +7,4 @@ keystone_host: {{keystone_host}} keystone_port: {{keystone_port}} tasks: - - template: src={{resource_dir}}/templates/openrc.template dest=/root/openrc + - template: src={{templates_dir}}/openrc.template dest=/root/openrc diff --git a/resources/rabbitmq_config/actions/remove.yml b/resources/rabbitmq_config/actions/remove.yml index 7e452a4..48094d2 100644 --- a/resources/rabbitmq_config/actions/remove.yml +++ b/resources/rabbitmq_config/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - file: path={{config_dir}} state=absent diff --git a/resources/rabbitmq_config/actions/run.yml b/resources/rabbitmq_config/actions/run.yml index 9cd1523..6976a44 100644 --- a/resources/rabbitmq_config/actions/run.yml +++ b/resources/rabbitmq_config/actions/run.yml @@ -1,8 +1,8 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes vars: admin_user: {{admin_user}} admin_password: {{admin_password}} tasks: - file: path={{config_dir}} state=directory - - template: src={{resource_dir}}/templates/rabbitmq.conf dest={{config_dir}}/rabbitmq.conf + - template: src={{templates_dir}}/rabbitmq.conf dest={{config_dir}}/rabbitmq.conf diff --git a/resources/rabbitmq_user/actions/remove.yml b/resources/rabbitmq_user/actions/remove.yml index cafb598..f1f5fc2 100644 --- a/resources/rabbitmq_user/actions/remove.yml +++ b/resources/rabbitmq_user/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - rabbitmq_user: user={{user_name}} diff --git a/resources/rabbitmq_user/actions/run.yml b/resources/rabbitmq_user/actions/run.yml index 0a9f719..5b84d7e 100644 --- a/resources/rabbitmq_user/actions/run.yml +++ b/resources/rabbitmq_user/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - rabbitmq_user: user={{user_name}} diff --git a/resources/rabbitmq_vhost/actions/remove.yml b/resources/rabbitmq_vhost/actions/remove.yml index f5d1a7c..b9f5165 100644 --- a/resources/rabbitmq_vhost/actions/remove.yml +++ b/resources/rabbitmq_vhost/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - rabbitmq_vhost: name={{vhost_name}} diff --git a/resources/rabbitmq_vhost/actions/run.yml b/resources/rabbitmq_vhost/actions/run.yml index dadf4b7..f2a1be5 100644 --- a/resources/rabbitmq_vhost/actions/run.yml +++ b/resources/rabbitmq_vhost/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ ip }}] +- hosts: [{{host}}] sudo: yes tasks: - rabbitmq_vhost: name={{vhost_name}} diff --git a/resources/riak_join_single/actions/join.yml b/resources/riak_join_single/actions/join.yml index 501d16f..c705d3f 100644 --- a/resources/riak_join_single/actions/join.yml +++ b/resources/riak_join_single/actions/join.yml @@ -1,4 +1,4 @@ -- hosts: [{{ip}}] +- hosts: [{{host}}] sudo: yes tasks: - shell: riak-admin cluster join {{join_to}} diff --git a/resources/riak_node/actions/commit.yml b/resources/riak_node/actions/commit.yml index 1d2c6f3..52bc471 100644 --- a/resources/riak_node/actions/commit.yml +++ b/resources/riak_node/actions/commit.yml @@ -1,4 +1,4 @@ -- hosts: [{{ip}}] +- hosts: [{{host}}] sudo: yes tasks: # - shell: sleep 30 diff --git a/resources/riak_node/actions/join.yml b/resources/riak_node/actions/join.yml index beea844..01d202f 100644 --- a/resources/riak_node/actions/join.yml +++ b/resources/riak_node/actions/join.yml @@ -1,4 +1,4 @@ -- hosts: [{{ip}}] +- hosts: [{{host}}] sudo: yes tasks: - shell: riak-admin cluster join {{join_to}} diff --git a/resources/riak_node/actions/remove.yml b/resources/riak_node/actions/remove.yml index 98fb0e4..9af8478 100644 --- a/resources/riak_node/actions/remove.yml +++ b/resources/riak_node/actions/remove.yml @@ -1,4 +1,4 @@ -- hosts: [{{ip}}] +- hosts: [{{host}}] sudo: yes tasks: - apt: diff --git a/resources/riak_node/actions/run.yml b/resources/riak_node/actions/run.yml index fff3ac4..cb553d4 100644 --- a/resources/riak_node/actions/run.yml +++ b/resources/riak_node/actions/run.yml @@ -1,4 +1,4 @@ -- hosts: [{{ip}}] +- hosts: [{{host}}] sudo: yes tasks: # those below are mostly for tests @@ -18,7 +18,7 @@ state: stopped - file: path=/etc/riak/riak.conf state=touch - template: - src: {{ resource_dir }}/templates/riak.conf + src: {{templates_dir}}/riak.conf dest: /etc/riak/riak.conf - shell: rm -fr /var/lib/riak/kv_vnode/* - shell: rm -fr /var/lib/riak/ring/* diff --git a/resources/riak_node/actions/update.yml b/resources/riak_node/actions/update.yml index 29b7526..a4a5af7 100644 --- a/resources/riak_node/actions/update.yml +++ b/resources/riak_node/actions/update.yml @@ -5,7 +5,7 @@ name: riak state: stopped - template: - src: {{ resource_dir }}/templates/riak.conf + src: {{templates_dir}}/riak.conf dest: /etc/riak/riak.conf - service: name: riak diff --git a/resources/ro_node/meta.yaml b/resources/ro_node/meta.yaml index 206c5ed..2add4de 100644 --- a/resources/ro_node/meta.yaml +++ b/resources/ro_node/meta.yaml @@ -15,3 +15,6 @@ input: ssh_user: schema: str! value: + name: + schema: str + value: a node