diff options
author | Yifei Xue <xueyifei@huawei.com> | 2017-11-23 08:52:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-11-23 08:52:43 +0000 |
commit | 9a76ddb1075479c891389a0c9303d80ead9895a0 (patch) | |
tree | 710319df4afdbd566ac7bd3b3a9e3924ca295053 /deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks | |
parent | abf896027b53f98f6f61a6c225aa3cde636f5877 (diff) | |
parent | a9f6a2b1665a31bbdaf266c333410bde2418cf15 (diff) |
Merge "Support the scenario for installing kubernetes in ubuntu system"
Diffstat (limited to 'deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks')
-rw-r--r-- | deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml b/deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml index 5bb77485..8054267d 100644 --- a/deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml +++ b/deploy/adapters/ansible/kubernetes/roles/pre-k8s/tasks/Ubuntu.yml @@ -54,6 +54,22 @@ path: /etc/apt/apt.conf state: absent +- name: rm sources.list + file: + path: /etc/apt/sources.list + state: absent + +- name: remove the space end of the line in the resolv.conf + shell: "sed -i 's/ *$//' /etc/resolv.conf" + +- name: change sources list + copy: + src: sources.list.official + dest: /etc/apt/sources.list + +- name: update apt cache + apt: update_cache=yes + - name: restart ntp service shell: "service ntp restart" |