diff options
Diffstat (limited to 'roles/update/tasks')
-rw-r--r-- | roles/update/tasks/main.yml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/roles/update/tasks/main.yml b/roles/update/tasks/main.yml index 4cd3541..0680189 100644 --- a/roles/update/tasks/main.yml +++ b/roles/update/tasks/main.yml @@ -9,7 +9,7 @@ # =========================================================================== # --- -- name: Copy default mirror for openbsd hosts +- name: Copy default mirror for system type = {{ ansible_distribution }} copy: src: installurl dest: /etc/installurl @@ -17,12 +17,8 @@ group: "{{ group_root }}" when: inventory_hostname in groups["openbsd"] -- name: Upgrading packages for distribution = {{ ansible_distribution }} +- name: Upgrading packages for system type = {{ ansible_distribution }} package: name: "*" state: latest - -- name: Applying syspatch for openbsd machines - syspatch: - apply: true - when: inventory_hostname in groups["openbsd"] + |