summaryrefslogtreecommitdiffstats
path: root/extras/gdb/gdb_cmdfile.vcl_client
diff options
context:
space:
mode:
authorJakub Grajciar <jgrajcia@cisco.com>2020-02-26 11:01:43 +0100
committerOle Trøan <otroan@employees.org>2020-02-26 12:45:11 +0000
commit23a386b71b287bc95000a8980856c5dbe7cdaf5a (patch)
tree0125b67cacdf2c15ceaae7c3fde0b3f0d9ca90e3 /extras/gdb/gdb_cmdfile.vcl_client
parentd26b8607c9f9a4385bf7af0a01b1a42efaed5053 (diff)
vat: add ip api types parser definitions
build vat with src/vnet/ip/ip_types_api.c Type: fix Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com> Change-Id: Iab0f18bf7a89cf9512beab0629bc3a349edec383 Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
Diffstat (limited to 'extras/gdb/gdb_cmdfile.vcl_client')
0 files changed, 0 insertions, 0 deletions
href='/csit/?h=oper-230918'>summaryrefslogtreecommitdiffstats
path: root/fdio.infra.ansible/roles/vpp/tasks/main.yaml
blob: cea06b764ddca8afae407e537a2203035e05c6b5 (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
---
# file: roles/vpp/tasks/main.yaml

- name: Inst - Update Package Cache (APT)
  ansible.builtin.apt:
    update_cache: true
    cache_valid_time: 3600
  when:
    - ansible_distribution|lower == 'ubuntu'
  tags:
    - vpp-inst-prerequisites

- name: Inst - Prerequisites
  ansible.builtin.package:
    name: "{{ packages | flatten(levels=1) }}"
    state: latest
  tags:
    - vpp-inst-prerequisites

- name: Conf - sysctl
  ansible.builtin.file:
    src: "/dev/null"
    dest: "/etc/sysctl.d/80-vpp.conf"
    state: "link"
  become: true
  tags:
    - vpp-conf-sysctl