diff options
author | Bryan Newbold <bnewbold@archive.org> | 2022-06-22 20:57:51 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2022-06-22 21:00:08 -0700 |
commit | 5d201f7d9b55ff50753da2456634a3e51462ba1f (patch) | |
tree | 073a983bb2162b71af6270bb9d454d0341bf7272 /roles/mediagoblin | |
parent | b64c159c3df815c361a19884d63ceba59b709990 (diff) | |
download | infra-5d201f7d9b55ff50753da2456634a3e51462ba1f.tar.gz infra-5d201f7d9b55ff50753da2456634a3e51462ba1f.zip |
refactor 'apt' tasks to newer syntax (not 'with_items')
Diffstat (limited to 'roles/mediagoblin')
-rw-r--r-- | roles/mediagoblin/tasks/mediagoblin.yml | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/roles/mediagoblin/tasks/mediagoblin.yml b/roles/mediagoblin/tasks/mediagoblin.yml index ff092e6..12252e1 100644 --- a/roles/mediagoblin/tasks/mediagoblin.yml +++ b/roles/mediagoblin/tasks/mediagoblin.yml @@ -1,16 +1,17 @@ - name: Install mediagoblin dependencies - apt: name={{item}} state=installed - with_items: - - python3-dev - - python3-lxml - - python3-pil - - python3-virtualenv - - python3-babel - - python3-pip - - virtualenv - - automake - - npm # XXX: really? UGH - - nodejs-legacy + apt: + state: present + name: + - python3-dev + - python3-lxml + - python3-pil + - python3-virtualenv + - python3-babel + - python3-pip + - virtualenv + - automake + - npm # XXX: really? UGH + - nodejs-legacy tags: - dependencies |