blob: 82dfeb35d9599763258ab688e4df9ee8f67c766d [file] [log] [blame]
Zack Williams845c7ca2020-07-06 17:19:27 -07001---
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 Williamsa38e3882022-07-20 14:42:28 -070010 - acl # needed for ansible to run commands as acme user
Zack Williams845c7ca2020-07-06 17:19:27 -070011 - curl
12 - git
13 - openssl
14 state: "present"
15 update_cache: true
16 cache_valid_time: 3600