From 575c16c3df6a1fa2703cf4a5e9ba76a2f409bc5e Mon Sep 17 00:00:00 2001 From: "carey.xu" Date: Tue, 10 Nov 2015 13:30:21 +0800 Subject: bugfix: need start rpcbind on centos7 JIRA: COMPASS-147 Change-Id: I7fc539684e0d2cde72346345d7fffd651542172c Signed-off-by: carey.xu --- deploy/adapters/ansible/roles/glance/tasks/nfs.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'deploy/adapters/ansible/roles/glance/tasks') diff --git a/deploy/adapters/ansible/roles/glance/tasks/nfs.yml b/deploy/adapters/ansible/roles/glance/tasks/nfs.yml index dc1be977..ff96c64a 100644 --- a/deploy/adapters/ansible/roles/glance/tasks/nfs.yml +++ b/deploy/adapters/ansible/roles/glance/tasks/nfs.yml @@ -17,7 +17,7 @@ line="/opt/images *(rw,insecure,sync,all_squash)" run_once: True -- name: restart nfs service +- name: restart compass nfs service local_action: service name={{ item }} state=restarted enabled=yes with_items: - rpcbind @@ -32,6 +32,10 @@ shell: awk -F'=' '/compass_server/ {print $2}' /etc/compass.conf register: ip_info +- name: restart host nfs service + service: name={{ item }} state=restarted enabled=yes + with_items: '{{ nfs_services }}' + - name: mount image directory shell: | mount -t nfs -onfsvers=3 {{ ip_info.stdout_lines[0] }}:/opt/images /var/lib/glance/images -- cgit 1.2.3-korg