blob: a8b24b34ceebcc83ad3ea985ba8847f8ba94945c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
##############################################################################
## Copyright (c) 2015 Nokia and others.
##
## All rights reserved. This program and the accompanying materials
## are made available under the terms of the Apache License, Version 2.0
## which accompanies this distribution, and is available at
## http://www.apache.org/licenses/LICENSE-2.0
###############################################################################
---
- name: get package http server
shell: awk -F'=' '/compass_server/ {print $2}' /etc/compass.conf
register: http_server
- name: download kvmfornfv package file
get_url:
url: "http://{{ http_server.stdout_lines[0] }}/packages/kvmfornfv/{{ package }}"
dest: /tmp/{{ package }}
- name: extract kvmfornfv files
command: su -s /bin/sh -c "tar xzf /tmp/{{ package }} -C /"
- name: Update grub on Centos
shell: grub2-mkconfig -o /boot/grub2/grub.conf
when: ansible_os_family == 'RedHat'
- name: Update grub on Ubuntu
shell: grub-mkconfig -o /boot/grub/grub.conf
when: ansible_os_family == 'Debian'
|