blob: 2f0c1fe3bb34864f431e3a7e410cebdf37eb165e [file] [log] [blame]
Zack Williams41513bf2018-07-07 20:08:35 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
David K. Bainbridge10a7a7e2018-01-29 09:54:40 -080014- name: Latest apt packages
15 apt:
16 name: "{{ item }}"
17 with_items: "{{ use_latest_for }}"
18 tags: [voltha-dev]
19
20- name: Services are not running
21 service:
22 name: "{{ item }}"
23 state: stopped
24 ignore_errors: yes
25 with_items: "{{ obsolete_services }}"
26 tags: [voltha-dev]