diff options
author | Sacha Chua <sacha@sachachua.com> | 2025-09-23 12:14:19 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2025-09-23 12:14:19 -0400 |
commit | ecd72950a2ed9148e65bad18e9e358a2c63b7c35 (patch) | |
tree | b44737c3c5ac1cc6d96f1bd8acd410c60860812a /roles/pad/tasks | |
parent | 576cb9e0be0992fb5d937a7d9bd95b657c3926eb (diff) | |
download | emacsconf-ansible-main.tar.xz emacsconf-ansible-main.zip |
Diffstat (limited to 'roles/pad/tasks')
-rw-r--r-- | roles/pad/tasks/main.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/pad/tasks/main.yml b/roles/pad/tasks/main.yml index e2836a6..6e32ff6 100644 --- a/roles/pad/tasks/main.yml +++ b/roles/pad/tasks/main.yml @@ -5,7 +5,7 @@ block: - name: Add GPG apt: - update_cache: yes + update_cache: "{{ update_cache }}" name: - gpg - sudo @@ -17,15 +17,15 @@ - name: Add nodesource repository ansible.builtin.apt_repository: repo: deb https://deb.nodesource.com/node_20.x nodistro main - update_cache: yes + update_cache: "{{ update_cache }}" - name: Install packages apt: - update_cache: yes + update_cache: "{{ update_cache }}" name: - git - systemd - sudo - - nodejs + - nodejs=20.19.5-1nodesource1 - mariadb-server - mariadb-client state: present |