aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/set_flavor_property
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2018-04-17 00:45:17 -0700
committerRoss Brattain <ross.b.brattain@intel.com>2018-04-17 17:16:40 -0700
commit01ef85fc8234c8ddeaae65eceaf5bbb9545b9e98 (patch)
treec7a8b28b75f509b62ede920c18bb8a7925323153 /ansible/roles/set_flavor_property
parentbe5e495a1cb7ab97b9202900defaf00dbd773054 (diff)
remove apex lake tc007 from test suites
fixes opnfv_os-nosdn-fdio-noha_daily.yaml failures due to missing testcase Change-Id: I5f050d72334da46b94de5fa3662047bf694f7e3e Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Diffstat (limited to 'ansible/roles/set_flavor_property')
0 files changed, 0 insertions, 0 deletions
0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# Copyright (c) 2017 Intel Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
  - name: Install docker
    include: "{{ ansible_os_family }}.yml"

  - name: create docker service config dir
    file: path=/etc/systemd/system/docker.service.d state=directory

  - name: create docker proxy config
    template: src=http-proxy-conf.j2 dest=/etc/systemd/system/docker.service.d/http-proxy.conf owner=root mode=0644
    when: 'proxy_env is defined and "http_proxy" in proxy_env or "https_proxy" in proxy_env'
    notify:
     - systemd daemon reload
     - restart docker

  - name: start docker service
    service: name=docker state=started enabled=yes

  - meta: flush_handlers