From c044bdca5c66819d5a0cff5933e20a11af4a08ce Mon Sep 17 00:00:00 2001 From: Rene Date: Thu, 17 Feb 2022 23:05:17 +0100 Subject: [PATCH] add repo --- roles/jitsimeet/tasks/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/jitsimeet/tasks/main.yml b/roles/jitsimeet/tasks/main.yml index beeded7..bcb76ac 100644 --- a/roles/jitsimeet/tasks/main.yml +++ b/roles/jitsimeet/tasks/main.yml @@ -9,12 +9,12 @@ - import_role: name: webserver # required. The name of the role to be executed. # install software - # - name: jitsimeet | add repo - # apt_repo: - # repo: universe # required. Name of the repository to add or remove. - # state: present # not required. choices: absent;present. Indicates the desired repository state. - # remove_others: no # not required. Remove other then added repositories Used if I(state=present) - # update: yes # not required. Update the package database after changing repositories. + - name: jitsimeet | add repo + apt_repo: + repo: universe # required. Name of the repository to add or remove. + state: present # not required. choices: absent;present. Indicates the desired repository state. + remove_others: no # not required. Remove other then added repositories Used if I(state=present) + update: yes # not required. Update the package database after changing repositories. # - name: jitsimeet | adjust limits # blockinfile: # path: "/etc/systemd/system.conf" # required. The file to modify. Before Ansible 2.3 this option was only usable as I(dest), I(destfile) and I(name).