diff options
author | binary <me@rgoncalves.se> | 2021-02-27 10:30:33 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-02-27 10:30:33 +0100 |
commit | 5acdc00aaf6c65c1353cc02a59f33e0d6ba9a281 (patch) | |
tree | 8bb7737b3efd6055dbf098105858c43c7453fbd6 /roles/_workstation/packages/tasks | |
parent | d776d9820aeeb2fb84a4a47ce5eacf3a40823591 (diff) | |
download | infrastructure-5acdc00aaf6c65c1353cc02a59f33e0d6ba9a281.tar.gz |
Break workstation role in sub-roles
Diffstat (limited to 'roles/_workstation/packages/tasks')
-rw-r--r-- | roles/_workstation/packages/tasks/main.yml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/roles/_workstation/packages/tasks/main.yml b/roles/_workstation/packages/tasks/main.yml new file mode 100644 index 0000000..798eafa --- /dev/null +++ b/roles/_workstation/packages/tasks/main.yml @@ -0,0 +1,49 @@ + +# workstation ~~ roles/_workstation/packages/tasks/main.yml +# install packages for all distributions + +--- + +- name: install packages for Archlinux + shell: | + pacman --noconfirm --needed -Sy {{ item | join(" ") }} + loop: + - "{{ pkgs_common }}" + - "{{ pkgs_archlinux }}" + no_log: true + register: out + ignore_errors: true + when: ansible_distribution == "Archlinux" + +- name: install packages for OpenBSD + shell: pkg_add -z {{ item | join(" ") }} + loop: + - "{{ pkgs_common }}" + - "{{ pkgs_openbsd }}" + no_log: true + register: out + ignore_errors: true + when: ansible_distribution == "OpenBSD" + +- name: packages installation output + debug: + msg: | + {% for item in out.results %} + - {{ item.cmd }} + {% for type in ["stdout_lines", "stderr_lines"] if item[type] %} + -- {{ type }} + {% for line in item[type] %} + --- {{ line }} + {% endfor %} + {% endfor %} + {% endfor %} + when: out is defined + +- name: show installation informations + debug: + msg: | + {% if out is defined %} + Installed all packages for system : {{ ansible_distribution }} + {% else %} + No installation methode for system : {{ ansible_distribution }}. Please patch and commit. + {% endif %} |