diff options
author | 2024-08-25 21:40:55 +0100 | |
---|---|---|
committer | 2024-08-25 23:14:45 +0100 | |
commit | 63cb1e3725ef319e1ee97a84a7fddf2dbabe69a8 (patch) | |
tree | 435bf7d84921f47f67a9e2724cac425dde356303 | |
parent | Deploy git-mirrors role to NGINX hosts (diff) |
Add dependencies for formatting
-rw-r--r-- | ansible/roles/git-mirrors/tasks/main.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ansible/roles/git-mirrors/tasks/main.yml b/ansible/roles/git-mirrors/tasks/main.yml index c66347d..97847ef 100644 --- a/ansible/roles/git-mirrors/tasks/main.yml +++ b/ansible/roles/git-mirrors/tasks/main.yml @@ -6,6 +6,16 @@ tags: - role::git-mirrors +- name: Install formatting dependencies for cgit + package: + state: present + name: + - python3-markdown + - python3-docutils + - python3-pygments + tags: + - role::git-mirrors + - name: Create mirroring user user: state: present |