Zack Williams | 41513bf | 2018-07-07 20:08:35 -0700 | [diff] [blame] | 1 | # 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. Bainbridge | 10a7a7e | 2018-01-29 09:54:40 -0800 | [diff] [blame] | 14 | - 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] |