diff options
author | wutianwei <wutianwei1@huawei.com> | 2017-06-21 11:02:26 +0800 |
---|---|---|
committer | wutianwei <wutianwei1@huawei.com> | 2017-06-27 11:01:32 +0800 |
commit | 7107ed60659e23863ffcd227600bf741489f24d8 (patch) | |
tree | 68900ea665704bae00d2ad9d172874ee9ab0138f /deploy/adapters/ansible/roles/config-compute/tasks/main.yml | |
parent | 0ad9f476a6b7adb8ece6d4cf60d0204103992699 (diff) |
Support Centos7
1. install the yum packages
2. add the ifcfg scripts to adapt Centos7
3. change MaxSession to 100
4. if setup-host failed, retry to run the failed container
Change-Id: I57589d38f6af1677cb889875c85d6b8bac5c80d0
Signed-off-by: wutianwei <wutianwei1@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/config-compute/tasks/main.yml')
-rw-r--r-- | deploy/adapters/ansible/roles/config-compute/tasks/main.yml | 30 |
1 files changed, 4 insertions, 26 deletions
diff --git a/deploy/adapters/ansible/roles/config-compute/tasks/main.yml b/deploy/adapters/ansible/roles/config-compute/tasks/main.yml index 886a407f..674c80cc 100644 --- a/deploy/adapters/ansible/roles/config-compute/tasks/main.yml +++ b/deploy/adapters/ansible/roles/config-compute/tasks/main.yml @@ -7,30 +7,8 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## --- -- name: configure network - template: - src: compute.j2 - dest: /etc/network/interfaces - notify: - - restart network service +- include: "{{ ansible_distribution }}.yml" + when: ansible_distribution == 'Ubuntu' -- meta: flush_handlers - -- name: Install apt packages - apt: - pkg: "nfs-kernel-server" - state: "present" - -- name: make nfs dircetory - file: "dest=/images mode=0777 state=directory" - -- name: configure service - shell: "echo 'nfs 2049/tcp' >> /etc/services; \ - echo 'nfs 2049/udp' >> /etc/services" - -- name: configure NFS - template: - src: exports - dest: /etc/exports - notify: - - restart nfs service +- include: "{{ ansible_os_family }}.yml" + when: ansible_os_family == 'RedHat' and ansible_distribution_major_version == '7' |