Zack Williams | 845c7ca | 2020-07-06 17:19:27 -0700 | [diff] [blame] | 1 | --- |
| 2 | # acme tasks/Debian.yml |
| 3 | # |
| 4 | # SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org> |
| 5 | # SPDX-License-Identifier: Apache-2.0 |
| 6 | |
| 7 | - name: Install tools required for acme.sh |
| 8 | apt: |
| 9 | name: |
Zack Williams | a38e388 | 2022-07-20 14:42:28 -0700 | [diff] [blame^] | 10 | - acl # needed for ansible to run commands as acme user |
Zack Williams | 845c7ca | 2020-07-06 17:19:27 -0700 | [diff] [blame] | 11 | - curl |
| 12 | - git |
| 13 | - openssl |
| 14 | state: "present" |
| 15 | update_cache: true |
| 16 | cache_valid_time: 3600 |